(b)
| 91 | } |
| 92 | |
| 93 | add(b) { |
| 94 | const values = lohi_from_one(b); |
| 95 | const u32 = this._u32; |
| 96 | const low = u32[0] + values[0]; |
| 97 | return new this.constructor(low >>> 0, (u32[1] + values[1] + (low > 0xffffffff)) >>> 0); |
| 98 | } |
| 99 | |
| 100 | sub(b) { |
| 101 | const values = lohi_from_one(b); |
no test coverage detected