MultiValueMap.Entry

The internal structure used to store each key and set of values.

struct MultiValueMap(KeyType, ValueType, alias KeySort = (a, b) => a < b)
static
struct Entry {}

Members

Functions

toString
string toString()

Gets a human-readable string representation of this entry.

Variables

key
KeyType key;

The key for this entry.

values
ValueType[] values;

The list of values associated with this entry's key. This always contains at least one value.