()
| 604 | } |
| 605 | |
| 606 | isNegative(): boolean { |
| 607 | if (this._special === SpecialValue.NAN) return false |
| 608 | if (this._special === SpecialValue.NEGATIVE_INFINITY) return true |
| 609 | if (this._special === SpecialValue.POSITIVE_INFINITY) return false |
| 610 | if (this._mantissa === 0n) return this._negativeZero |
| 611 | return this._mantissa < 0n |
| 612 | } |
| 613 | |
| 614 | isPositive(): boolean { |
| 615 | if (this._special === SpecialValue.NAN) return false |
no outgoing calls
no test coverage detected