Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type KNode ¶ added in v0.8.0
type KNode[K comparable, T any] struct { Next *KNode[K, T] Key K Value T }
type LinkedKNode ¶ added in v0.8.0
type LinkedKNode[K comparable, T any] struct { Prev, Next *LinkedKNode[K, T] Key K Value T }
type LinkedNode ¶ added in v0.8.0
type LinkedNode[T any] struct { Prev, Next *LinkedNode[T] Value T }
type LinkedOrdKNode ¶ added in v0.8.0
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.