KeyType

template KeyType (
T
) {}

Members

Aliases

KeyType
alias KeyType = K
Undocumented in source.

Parameters

T

The type of the associative array.

Return Value

The key type of the associative array T.

Examples

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

Meta