\"\" \"\" \"\"
Go backward to Nil(): Empty List
Go up to Constructors
Go forward to Cons(): List Construction
RISC-Linz logo

nil(): Empty List (Binding Form)

l.nil()
      List<T> l

Specification: Binds l to the empty list.

Complexity: O(1).

Note: This operation is more efficient than the otherwise equivalent form 

l = List<T>::Nil()

Author: Wolfgang Schreiner
Last Modification: April 12, 1997