isFortranType - multiple declarations
Enum member isFortranType
Detect whether T is a FORTRAN-compatible floating-point type. The FORTRAN-compatible types are: float, double, cfloat, cdouble.
enum isFortranType(T)
= is(T == float) || is(T == double);
Enum member isFortranType
enum isFortranType(T)
= isFortranType!(typeof(T .re));