Max Graey
Max Graey
In #56 we implemented `muldiv` operation for `u128` and `safe/u128` but last one still required overflow checking
**TODO** - [ ] Internal tests - [x] u128 - [ ] i128 - [ ] u256 - [ ] i256 - [x] safe u128 - [ ] safe i128...
Current PR #7 (thanks @javiersuweijie) added naive reminder/division implementations which quite good works when numerator and denominator pretty close. So for future need to choose and implement more performant alghoritm...
- [ ] Benchmark suite. - [ ] Compare with Rust. - [ ] Compare with incoming javascript's **`BigInt`**.
Add multiply-add / multiply-sub (MADD / MSUB) operations. Also implemented sub / add wasm versions
Please fill in this template: - [x] Use a meaningful title for the pull request. Include the name of the resource added. - [x] Add a short sentence on why...
Great article about this: https://jasonhpriestley.com/regex-dfa
I guess better use `new RegExp("[\w]+")` instead pre-compiled `/[\w]+/` for example