ValueType

template ValueType (
T
) {}

Members

Aliases

ValueType
alias ValueType = V
Undocumented in source.

Parameters

T

The type of the associative array.

Return Value

The value type of the associative array T.

Examples

static assert(is(ValueType!(int[string]) == int));
static assert(!is(ValueType!(int[15])));

Meta