[BUG] OrderedCollection>>insert:before:

Alain Plantec alain.plantec at univ-brest.fr
Thu Jan 8 18:26:11 UTC 2004


Hi all,

Squeak 3.6
Latest update: #5429


With one insert, it's OK :
| l |
l := #(1 2 3 4) asOrderedCollection.
l insert: 88 before: 1.
l.
 an OrderedCollection(88 1 2 3 4) (OK)

With two, KO
| l |
l := #(1 2 3 4) asOrderedCollection.
l insert: 88 before: 1.
l insert: 99 before: 2.
l.
  an OrderedCollection(nil 88 1 2 3 4) (KO)

Alain Plantec





More information about the Squeak-dev mailing list