[top][index]
search for:

toList BasicList -- list of elements

Synopsis:

  • Function: toList -- list of elements
  • Input:
  • an instance of class BasicList.
  • Output:
  • an instance of class List.
  • toList x -- provides a list of elements in the basic list x.

    This is a good way to convert a list of some other type to a list of type List.

    i1 : toList [a,b,c]

    o1 = {a, b, c}

    o1 : List


    [top][index]
    search for: