HashMapNode

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

Constructors

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

Members

Functions

getKey
K getKey()
Undocumented in source. Be warned that the author may not have intended to support it.
getValue
V getValue()
Undocumented in source. Be warned that the author may not have intended to support it.
opEquals
bool opEquals(IObject o)
Undocumented in source. Be warned that the author may not have intended to support it.
opEquals
bool opEquals(Object o)
Undocumented in source. Be warned that the author may not have intended to support it.
setValue
V setValue(V newValue)
Undocumented in source. Be warned that the author may not have intended to support it.
toHash
size_t toHash()
Undocumented in source. Be warned that the author may not have intended to support it.
toString
string toString()
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

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

Meta