(b)
| 98 | } |
| 99 | |
| 100 | sub(b) { |
| 101 | const values = lohi_from_one(b); |
| 102 | const u32 = this._u32; |
| 103 | const low = u32[0] + (~values[0] >>> 0) + 1; |
| 104 | return new this.constructor(low >>> 0, (u32[1] + (~values[1] >>> 0) + (low > 0xffffffff)) >>> 0); |
| 105 | } |
| 106 | |
| 107 | toString(is_pretty = false) { |
| 108 | if (!is_pretty) { |
no test coverage detected