[squeak-dev] SkipList

nicolas cellier ncellier at ifrance.com
Wed Mar 26 21:47:21 UTC 2008


I was looking how to correct http://bugs.squeak.org/view.php?id=6778 .
Not that easy given structure of SkipList...

But first, I would like to understand something.
Why this:

	| sk |
	sk := SkipList new.
	sk at: 3 put: '3333'.
	sk at: 3 put: '666'.
	self assert: (sk at: 3) = '3333'.

It works, I mean sk is silently ignoring my second #at:put: request.
Any reason for such a behavior?

And my second question, anyone ever used SkipList?

Nicolas




More information about the Squeak-dev mailing list