Re: Issue 2230 in pharo: ArrayedCollection class>>newFromStream:

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Re: Issue 2230 in pharo: ArrayedCollection class>>newFromStream:

pharo

Comment #5 on issue 2230 by [hidden email]: ArrayedCollection  
class>>newFromStream:
http://code.google.com/p/pharo/issues/detail?id=2230

Thanks esteban. Indeed we should really check


Reply | Threaded
Open this post in threaded view
|

Re: Issue 2230 in pharo: ArrayedCollection class>>newFromStream:

Levente Uzonyi-2
On Sun, 6 Feb 2011, [hidden email] wrote:

>
> Comment #5 on issue 2230 by [hidden email]: ArrayedCollection
> class>>newFromStream:
> http://code.google.com/p/pharo/issues/detail?id=2230
>
> Thanks esteban. Indeed we should really check
>
>

FYI (in Squeak):

ArrayedCollection allSubclasses reject: [ :each |
  each isPointers or: [ each isWords not ] ]

an OrderedCollection(SoundBuffer WordArray ShortIntegerArray Bitmap
FloatArray ShortRunArray IntegerArray ColorArray WordArrayForSegment
ShortPointArray KedamaFloatArray PointArray WideString WideSymbol)


Levente