type to check
true if T is a built-in floating point type, excluding complex/imaginary ones
static assert ( isRealType!(double)); static assert (!isRealType!(long)); static assert (!isRealType!(cdouble));
See Implementation