[Newbies] Re: Collection subclasses

2008-04-03 Thread nicolas cellier
Rob Rothwell a écrit : If I create a simple object subclassed from Collection, SequenceableCollection, or ArrayedCollection called CollectionObject, with CollectionObject#initialize self halt. and execute: CollectionObject new. the halt is executed. Whereas, if I subclass

Re: [Newbies] Re: Collection subclasses

2008-04-03 Thread Rob Rothwell
On Thu, Apr 3, 2008 at 3:47 PM, nicolas cellier [EMAIL PROTECTED] wrote: If you examine the protocol of these classes, you will see that they use an #initialize: with an argument instead. No extra initialization at all performed by default (it's a deliberate optimization). Ok...I kind of