Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type KNode ¶
type KNode[K comparable, T any] struct { Next *KNode[K, T] Key K Value T }
type LinkedKNode ¶
type LinkedKNode[K comparable, T any] struct { Prev, Next *LinkedKNode[K, T] Key K Value T }
type LinkedNode ¶
type LinkedNode[T any] struct { Prev, Next *LinkedNode[T] Value T }
type LinkedOrdKNode ¶
type LinkedOrdKNode[K constraints.Ordered, T any] struct { Prev, Next *LinkedOrdKNode[K, T] Key K Value T }
Click to show internal directories.
Click to hide internal directories.