Versions in this module Expand all Collapse all v0 v0.0.1 Jun 16, 2020 Changes in this version + type Element interface + type ElementMapper struct + type Entry struct + func (e *Entry) Next() Element + func (e *Entry) Prev() Element + func (e *Entry) SetNext(elem Element) + func (e *Entry) SetPrev(elem Element) + type Linker interface + Next func() Element + Prev func() Element + SetNext func(Element) + SetPrev func(Element) + type List struct + func (l *List) Back() Element + func (l *List) Empty() bool + func (l *List) Front() Element + func (l *List) InsertAfter(b, e Element) + func (l *List) InsertBefore(a, e Element) + func (l *List) PushBack(e Element) + func (l *List) PushBackList(m *List) + func (l *List) PushFront(e Element) + func (l *List) Remove(e Element) + func (l *List) Reset()