(y: BigDecimal | number | string | bigint)
| 580 | } |
| 581 | |
| 582 | lessThanOrEqualTo(y: BigDecimal | number | string | bigint): boolean { |
| 583 | const c = this._compareTo(BigDecimal._coerce(y)) |
| 584 | return c === 0 || c === -1 |
| 585 | } |
| 586 | |
| 587 | greaterThanOrEqualTo(y: BigDecimal | number | string | bigint): boolean { |
| 588 | const c = this._compareTo(BigDecimal._coerce(y)) |
no test coverage detected