Versions in this module Expand all Collapse all v0 v0.0.4 Jan 15, 2025 v0.0.1 Jan 15, 2025 Changes in this version + type List struct + func (l *List[T]) Append(n *Node[T]) + func (l *List[T]) Copy() *List[T] + func (l *List[T]) First() *Node[T] + func (l *List[T]) Last() *Node[T] + func (l *List[T]) Len() int + func (l *List[T]) Remove(n *Node[T]) + type Node struct + func NewNode[T any](value T) *Node[T] + func (n *Node[T]) Copy() *Node[T] + func (n *Node[T]) Next() (*Node[T], error) + func (n *Node[T]) Prev() (*Node[T], error) + func (n *Node[T]) Value() (T, error)