Determines whether T is a scalar type.
Scalar types are numbers, booleans and characters.
$(D_KEYWORD true) if T is a scalar type, $(D_KEYWORD false) otherwise.
static assert(isScalarType!int); static assert(!isScalarType!(int[]));
$(D_PSYMBOL isNumeric), $(D_PSYMBOL isBoolean), $(D_PSYMBOL isSomeChar).
See Implementation
Determines whether T is a scalar type.
Scalar types are numbers, booleans and characters.