Versions in this module Expand all Collapse all v0 v0.7.0 May 8, 2020 Changes in this version + type Element struct + Value interface{} + type List struct + func New() *List + func (l *List) Empty() bool + func (l *List) Init() *List + func (l *List) Next(node *Element) *Element + func (l *List) PopLeft() interface{} + func (l *List) PopRight() interface{} + func (l *List) Prev(node *Element) *Element + func (l *List) PushLeft(v interface{}) *Element + func (l *List) PushRight(v interface{}) *Element + func (l *List) Remove(e *Element) interface{}