()
| 690 | // --- Internal helpers --- |
| 691 | |
| 692 | private _isSignNegative(): boolean { |
| 693 | if (this._special === SpecialValue.NEGATIVE_INFINITY) return true |
| 694 | if (this._mantissa < 0n) return true |
| 695 | if (this._mantissa === 0n) return this._negativeZero |
| 696 | return false |
| 697 | } |
| 698 | |
| 699 | private _specialArith( |
| 700 | other: BigDecimal, |
no outgoing calls
no test coverage detected