行列型の要素の型を取得します
static struct S { enum rows = 1; enum cols = 1; int opIndex(size_t, size_t) const { return 1; } alias at = opIndex; } static assert(is(ElementType!S == int));
See Implementation
行列型の要素の型を取得します