[top][index]
search for:

MutableList -- the class of all mutable lists

The type MutableList is a member of the class Type. Each object of class MutableList is called a mutable list. Each mutable list is also a member of class BasicList.

More general types (whose methods may also apply) :

  • BasicList -- the class of all basic lists
  • Normally the entries in a mutable list 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

    o4 = MutableList{a,b,1234}

    See also:

  • BasicList -- the class of all basic lists
  • Functions and methods returning a a mutable list :

  • frame -- the frame of a function
  • Methods for using a mutable list :

  • net MutableList
  • toExternalString MutableList
  • toString MutableList

  • [top][index]
    search for: