[squeak-dev] ByteArray>>at:put:

Levente Uzonyi leves at caesar.elte.hu
Thu Apr 26 12:41:21 UTC 2018


When was the last time this worked?

Levente

On Thu, 26 Apr 2018, marcel.taeumel wrote:

> Hi, there.
>
> I cannot put a ByteString into a ByteArray via a WriteStream anymore:
>
> | s |
> s := WriteStream on: ByteArray new.
> s nextPutAll: 'hello'.
>
> You need to do:
>
> | s |
> s := WriteStream on: ByteArray new.
> s nextPutAll: 'hello' asByteArray.
>
> This breaks code.
>
> Best,
> Marcel
>
>
>
> --
> Sent from: http://forum.world.st/Squeak-Dev-f45488.html


More information about the Squeak-dev mailing list