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