isNaN property

bool get isNaN

Return true if the represented floating point number is considered NaN or "Not a Number".

Implementation

bool get isNaN => isExponentAllOnes && !isMantissaAllZeroes;