isNaN property
Return true if the represented floating point number is considered
NaN or "Not a Number".
Implementation
bool get isNaN => isExponentAllOnes && !isMantissaAllZeroes;
Return true if the represented floating point number is considered
NaN or "Not a Number".
bool get isNaN => isExponentAllOnes && !isMantissaAllZeroes;