Funog:

> In the case of an associative array, is it possible to retrieve both the 
> value and key type? (D1)

template AAKeyType(T) {
    alias typeof(T.keys[0]) AAKeyType;
}

template AAValType(T) {
    alias typeof(T.values[0]) AAValType;
}

Bye,
bearophile

Reply via email to