Versions in this module Expand all Collapse all v0 v0.3.0 Apr 2, 2024 v0.2.1 Mar 17, 2024 Changes in this version + type List struct + func (l *List[T]) Append(v T) *Node[T] + func (l *List[T]) Head() *Node[T] + func (l *List[T]) Pop(n *Node[T]) + func (l *List[T]) PopTail() (*Node[T], bool) + func (l *List[T]) Prepend(v T) *Node[T] + func (l *List[T]) Tail() *Node[T] + type Node struct + Data T