(y: BigDecimal | number | string | bigint)
| 305 | } |
| 306 | |
| 307 | minus(y: BigDecimal | number | string | bigint): BigDecimal { |
| 308 | return this.plus(BigDecimal._coerce(y).negated()) |
| 309 | } |
| 310 | |
| 311 | mod(y: BigDecimal | number | string | bigint): BigDecimal { |
| 312 | const other = BigDecimal._coerce(y) |
no test coverage detected