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