Versions in this module Expand all Collapse all go1 go1.18.10 Jan 10, 2023 Changes in this version + type Element struct + Value any + func (e *Element) Next() *Element + func (e *Element) Prev() *Element + type List struct + func New() *List + func (l *List) Back() *Element + func (l *List) Front() *Element + func (l *List) Init() *List + func (l *List) InsertAfter(v any, mark *Element) *Element + func (l *List) InsertBefore(v any, mark *Element) *Element + func (l *List) Len() int + func (l *List) MoveAfter(e, mark *Element) + func (l *List) MoveBefore(e, mark *Element) + func (l *List) MoveToBack(e *Element) + func (l *List) MoveToFront(e *Element) + func (l *List) PushBack(v any) *Element + func (l *List) PushBackList(other *List) + func (l *List) PushFront(v any) *Element + func (l *List) PushFrontList(other *List) + func (l *List) Remove(e *Element) any