MapSet.Pair

Logically, each MapSet node has a map of values to a subset. However, it is faster to represent that map as an array of key-value pairs rather than a D associative array, so we do that here.

struct MapSet(DimName, DimValue, DimValue nullValue = DimValue.init)
struct Pair {}

Members

Functions

opCmp
int opCmp(typeof(this) other)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

set
MapSet set;
value
DimValue value;

Meta