isInfinity method
Returns true if h is a positive or a negative infinity.
Implementation
bool isInfinity() {
final e = (_h! >> 10) & 0x001f;
final m = _h! & 0x3ff;
return e == 31 && m == 0;
}
Returns true if h is a positive or a negative infinity.
bool isInfinity() {
final e = (_h! >> 10) & 0x001f;
final m = _h! & 0x3ff;
return e == 31 && m == 0;
}