hunt ~v1.1.x (2025-02-10T00:10:27.0144053)
Dub
Repo
LinkedHashMapEntry
hunt
collection
HashMap
HashMap.Node subclass for normal LinkedHashMap entries.
static
class
LinkedHashMapEntry : HashMapNode!(K, V)(
K
V
) {
LinkedHashMapEntry
!(
K
,
V
)
before
;
LinkedHashMapEntry
!(
K
,
V
)
after
;
this
(size_t hash, K key, V value, HashMapNode!(K, V) next);
}
Constructors
this
this
(size_t hash, K key, V value, HashMapNode!(K, V) next)
after
LinkedHashMapEntry
!(
K
,
V
)
after
;
Undocumented in source.
Members
Variables
before
LinkedHashMapEntry
!(
K
,
V
)
before
;
Undocumented in source.
Meta
Source
See Implementation
hunt
collection
HashMap
classes
HashMap
HashMapNode
LinkedHashMapEntry
TreeNode
HashMap.Node subclass for normal LinkedHashMap entries.