Pair

Pair a key and a value toghether.

@safe
struct Pair (
ValueType
KeyType
) {}

Members

Variables

key
KeyType key;

Key in pair

value
ValueType value;

Value in pair

Return Value

Pair!(ValueType, KeyType) a pair of key => value.

Meta