hunt-extra v1.1.8 (2021-12-13T08:45:08Z)
Home
Dub
Repo
LinkedHashMapEntry
hunt
collection
HashMap
HashMap.Node subclass for normal LinkedHashMap entries.
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
functions
hash
tableSizeFor
HashMap.Node subclass for normal LinkedHashMap entries.