Versions in this module Expand all Collapse all v1 v1.1.0 Feb 1, 2024 Changes in this version type Node + func (n *Node[T]) Filter(filterFunc func(obj T) bool) (*Node[T], bool) v1.0.5 Sep 24, 2023 Changes in this version + type Node struct + func New(data T) *Node[T] + func (n *Node[T]) AddNext(node *Node[T]) + func (n *Node[T]) Backtrack() []*Node[T] + func (n *Node[T]) GetData() T + func (n *Node[T]) GetID() int + func (n *Node[T]) GetNexts() []*Node[T] + func (n *Node[T]) GetPrevious() *Node[T] + func (n *Node[T]) GetStructure() []string + func (n *Node[T]) IsLeaf() bool + func (n *Node[T]) IsRoot() bool + func (n *Node[T]) WithID(id int) *Node[T]