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 }
staticinlinenew_():Ref<List>
New returns an initialized list.
See also:
https://pkg.go.dev/container/list/#New_