LinkedList.popFront

Deletes the first entry from the list. If the list is empty, an error will occur.

Arguments

None

Return values

None

Complexity

Constant

Example

"sl/linkedList" useFile a: (1 2 0 5 "Hello" 0.3) makeList; a.popFront a [print "," print TRUE] enum
Output:
2,0,5,Hello,0.300000,