(y: BigDecimal | number | string | bigint)
| 570 | } |
| 571 | |
| 572 | lessThan(y: BigDecimal | number | string | bigint): boolean { |
| 573 | const c = this._compareTo(BigDecimal._coerce(y)) |
| 574 | return c === -1 |
| 575 | } |
| 576 | |
| 577 | greaterThan(y: BigDecimal | number | string | bigint): boolean { |
| 578 | const c = this._compareTo(BigDecimal._coerce(y)) |
no test coverage detected