Versions in this module Expand all Collapse all v0 v0.1.1 Dec 12, 2019 Changes in this version type List + func (list *List) RemoveAll() v0.1.0 Dec 12, 2019 Changes in this version + type List struct + func (list *List) Back() interface{} + func (list *List) Front() interface{} + func (list *List) Len() int + func (list *List) MoveToBack(elem interface{}) + func (list *List) MoveToFront(elem interface{}) + func (list *List) Next(elem interface{}) interface{} + func (list *List) Prev(elem interface{}) interface{} + func (list *List) PushBack(elem interface{}) + func (list *List) PushBackList(other *List) + func (list *List) PushFront(elem interface{}) + func (list *List) PushFrontList(other *List) + func (list *List) Remove(elem interface{}) + func (list *List) RemoveBack() interface{} + func (list *List) RemoveFront() interface{} + type Node struct