Package list implements a doubly linked list.

To iterate over a list (where l is a *List):

for e := l.Front(); e != nil; e = e.Next() {
	// do something with e.Value
}

Static methods

staticinlinenew_():Ref<List>

New returns an initialized list.

See also: