HashMapNode

Basic hash bin node, used for most entries. (See below for TreeNode subclass, and in LinkedHashMap for its Entry subclass.)

class HashMapNode : AbstractMapEntry!(K, V)(
K
V
) {}

Constructors

this
this(size_t hash, K key, V value, HashMapNode!(K, V) next)
Undocumented in source.

Members

Variables

hash
size_t hash;
Undocumented in source.
next
HashMapNode!(K, V) next;
Undocumented in source.

Meta