Enumap.length

The number of entries in the Enumap

struct Enumap(K, V)
static immutable
auto length = _keys.length;

Examples

Assuming Element consists of air, earth, water, and fire (4 members):

static assert(Enumap!(Element, int).length == 4);

Meta