return true if T has an enum uint named Dimension. False if not
1 struct Foo { 2 static immutable int Dimension = 0; 3 } 4 5 static assert( hasDimension!Foo); 6 static assert(!hasDimension!int);
See Implementation
return true if T has an enum uint named Dimension. False if not