MutableList

MutableList -- the class of all mutable Lists.

Normally the entries in a mutable hash table are not printed, to prevent infinite loops in the printing routines. To print them out, use peek.

     i1 = s = new MutableList from {a,b,c};
     
     i2 = s#2 = 1234;
     
     i3 = s
     
     o3 = MutableList{...}
     
     o3 : MutableList
     
     i4 = peek s
     
     MutableList{a,b,1234}

See also lists, arrays, and sequences and BasicList.

Go to main index.

Go to concepts index.