Man
Container
LinkedList
List (free function)
List (LinkedList)
Creates an empty LinkedList.
Arguments
None
Return values
list
is the new LinkedList.
Complexity
Constant
Example
"sl/linkedList" useFile a: List; 1 a.pushBack 2 a.pushBack a [print "," print TRUE] enum
Output:
1,2,