Versions in this module Expand all Collapse all v0 v0.18.2 Nov 12, 2022 Changes in this version + type LinkedList struct + func NewLinkedList(elems ...T) *LinkedList[T] + func (l *LinkedList[T]) Peek() (T, bool) + func (l *LinkedList[T]) PeekTail() (T, bool) + func (l *LinkedList[T]) Pop() (T, bool) + func (l *LinkedList[T]) Push(val T) + func (l *LinkedList[T]) PushFront(val T)