isAnInfinity property
Return true if the represented floating point number is considered infinity or negative infinity
Implementation
bool get isAnInfinity => isExponentAllOnes && isMantissaAllZeroes;
Return true if the represented floating point number is considered infinity or negative infinity
bool get isAnInfinity => isExponentAllOnes && isMantissaAllZeroes;