Enum member DictionaryList.typedGet
struct DictionaryList
{
// ...
enum typedGet(T)
= __traits(compiles, (VALUE v)
{
return v .get!T;
}
);
// ...
}