Versions in this module Expand all Collapse all v1 v1.6.7 Feb 27, 2018 Changes in this version + func Delete(node *Node) + func Run(closeSig chan bool) + func SetTimer(inteval uint32, handler func(interface{}), args interface{}) + type LinkedList struct + func NewLinkedList() *LinkedList + func (this *LinkedList) PushBack(node Node) *Node + func (this LinkedList) GetHead() *Node + func (this LinkedList) GetLast() *Node + func (this LinkedList) Length() uint + type Node struct + func (this *Node) Data() (data interface{}) + func (this *Node) InsertHead(node Node) *Node + func (this *Node) Next() (node *Node) + func (this *Node) Prev() (node *Node) + func (this *Node) SetData(data interface{})