Returns the array's base type
Returns the string type for any type that returns true for isSomeString!T
alias T = BaseType!(int[][]); alias T2 = BaseType!(int[]); alias T3 = BaseType!int; alias T4 = BaseType!(string[]) static assert(is(T == int)); static assert(is(T2 == int)); static assert(is(T3 == int)); static assert(is(T4 == string));
See Implementation
Returns the array's base type
Returns the string type for any type that returns true for isSomeString!T