(b)
| 107 | } |
| 108 | |
| 109 | sub(b) { |
| 110 | const values = lohi_from_one(b); |
| 111 | const u32 = this._u32; |
| 112 | const low = u32[0] + (~values[0] >>> 0) + 1; |
| 113 | return new this.constructor( |
| 114 | low >>> 0, |
| 115 | (u32[1] + (~values[1] >>> 0) + (low > 0xffffffff)) >>> 0, |
| 116 | ); |
| 117 | } |
| 118 | |
| 119 | toString(is_pretty=false) { |
| 120 | if (!is_pretty) { |
no test coverage detected