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