MapEntry

Undocumented in source.
interface MapEntry : IObject , Comparable!(MapEntry!(K, V))(
K
V
) {}

Members

Functions

getKey
K getKey()

Returns the key corresponding to this entry.

getValue
V getValue()

Returns the value corresponding to this entry. If the mapping has been removed from the backing map (by the iterator's <tt>remove</tt> operation), the results of this call are undefined.

setValue
V setValue(V value)

Replaces the value corresponding to this entry with the specified value (optional operation). (Writes through to the map.) The behavior of this call is undefined if the mapping has already been removed from the map (by the iterator's <tt>remove</tt> operation).

Inherited Members

From IObject

opEquals
bool opEquals(IObject o)
Undocumented in source.
toString
string toString()
Undocumented in source.
toHash
size_t toHash()
Undocumented in source.

Meta