-
Notifications
You must be signed in to change notification settings - Fork 188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re-export num-integer traits #190
Comments
I have the same issue, but with the |
I think the better solution for those that don't actually care about the traits is to add corresponding inherent methods, even though that's more tedious to implement methods in two places. |
I personally want to use methods like For what it's worth, I'm quite new to Rust and I was very surprised I had to explicitly add an extra dependency just for basic methods like |
For users of this library to use
div_rem
they must add thenum-integer
dependency to their project. It would be more ergonomic ifnum-bigint
re-exported this trait so users could useuse num_bigint::{BigInt, Integer};
instead.The text was updated successfully, but these errors were encountered: