-
Notifications
You must be signed in to change notification settings - Fork 3
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
128-bit integers are available in nightly Rust #2
Comments
I have looked into supporting rust native u128 on nightly but there are some issues with the Rand crate not supporting rand for u128. This prevents implementing Rand for PCG which use the u128. So for now I think I am going to stick with extprim based u128. If the rand crate implements Rand for u128 behind some feature flag I can look into this issue again. |
@robojeb: I'm curious, but why does I think the request here was to just replace the use of |
For reference rust-random/rand#140 |
The latest version of the crate now supports (Sorry I feel I am a bad maintainer, I am not used to being in charge and I have been popping in and out) |
u128
andi128
were added in rust-lang/rust/pull/38482. They're currently behind thei128_type
feature gate.The text was updated successfully, but these errors were encountered: