On Aug 6, 2006, at 2:21 PM, nathansobo wrote:
> Is there an idiomatic way of achieving this behavior?
Io's constructor idiom is to avoid constructors when possible.
For example, instead of:
node := SkipNode cloneWithLevels(levels)
do:
node := SkipNode clone setLevels(levels)
The later is shorter in text, clearer, cleaner to implement, and more
flexible.