Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LinkKNode ¶ added in v1.10.5
type LinkKNode[K comparable, T any] struct { Prev, Next *LinkKNode[K, T] Key K Value T }
type LinkOrdKNode ¶ added in v1.10.5
type LinkOrdKNode[K comparable, T any] struct { Prev, Next *LinkOrdKNode[K, T] Key K Value T }
type ListKNode ¶ added in v1.10.5
type ListKNode[K comparable, T any] struct { Next *ListKNode[K, T] Key K Value T }
type ListOrdKNode ¶ added in v1.10.5
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.