apint
apint copied to clipboard
Arbitrary precision integers library.
Here is a brief compilation of problems I have seen: - perhaps `assign` should be what `strict_assign` is - I have never used `assign` or `strict_assign` and Robbepop dislikes the...
Could a method similar to `num-bigint`'s https://docs.rs/num-bigint/0.4.0/num_bigint/struct.BigUint.html#method.pow be added? Thanks.
Could using `%` on ApInts be implemented? For example ```rust s = a % b; ``` currently fails with this error: ``` cannot mod `ApInt` by `ApInt` ```
Here are the PRs that will need to be done before the crate is in a state that could be released. - [x] Rust edition 2018 - [x] Rustfmt PR...
There are two problems I have right now: - invariants such as unused bits being unset is not checked very well. Important functions are tested pretty well as a side...
This is a continuation of #18 and #27. I am tracking this in one issue, because the specific division algorithm I have in mind uses Karatsuba multiplication. I will post...
I was looking at the `from_str_radix` implementation and several things look wrong to me. -No option for signed `ApInts` -The input should be a `&str` not a `String` for the...