[squeak-dev] #streamContents: on OrderedCollection broken?

Marcel Taeumel marcel.taeumel at student.hpi.uni-potsdam.de
Mon May 26 09:56:20 UTC 2014


Should this work?

OrderedCollection streamContents: [:result |
	result nextPutAll: #(a b c) asOrderedCollection].

Well, this works:

OrderedCollection streamContents: [:result |
	result nextPutAll: #(a b c)].

And this works, too:

OrderedCollection streamContents: [:result |
	result nextPut: #foo; nextPutAll: #(a b c) asOrderedCollection].

Best,
Marcel



--
View this message in context: http://forum.world.st/streamContents-on-OrderedCollection-broken-tp4760369.html
Sent from the Squeak - Dev mailing list archive at Nabble.com.


More information about the Squeak-dev mailing list