isFloatingPointType

template isFloatingPointType (
T
) {}

Members

Static variables

isFloatingPointType
bool isFloatingPointType;
Undocumented in source.

Parameters

T

type to check

Return Value

true if T is any built-in floating-point type: real, complex, or imaginary.

Examples

static assert (isFloatingPointType!(double));
static assert (isFloatingPointType!(ifloat));

Meta