pub struct Lcg64Xsh32 { /* private fields */ }Expand description
A PCG random number generator (XSH RR 64/32 (LCG) variant).
Permuted Congruential Generator with 64-bit state, internal Linear Congruential Generator, and 32-bit output via “xorshift high (bits), random rotation” output function.
This is a 64-bit LCG with explicitly chosen stream with the PCG-XSH-RR
output function. This combination is the standard pcg32.
Despite the name, this implementation uses 16 bytes (128 bit) space
comprising 64 bits of state and 64 bits stream selector. These are both set
by SeedableRng, using a 128-bit seed.
Implementations§
Trait Implementations§
Source§impl Clone for Lcg64Xsh32
impl Clone for Lcg64Xsh32
Source§fn clone(&self) -> Lcg64Xsh32
fn clone(&self) -> Lcg64Xsh32
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Lcg64Xsh32
impl Debug for Lcg64Xsh32
Source§impl RngCore for Lcg64Xsh32
impl RngCore for Lcg64Xsh32
Source§fn fill_bytes(&mut self, dest: &mut [u8])
fn fill_bytes(&mut self, dest: &mut [u8])
Fill
dest with random data. Read moreSource§impl SeedableRng for Lcg64Xsh32
We use a single 127-bit seed to initialise the state and select a stream.
One seed bit (lowest bit of seed[8]) is ignored.
impl SeedableRng for Lcg64Xsh32
We use a single 127-bit seed to initialise the state and select a stream.
One seed bit (lowest bit of seed[8]) is ignored.
Auto Trait Implementations§
impl Freeze for Lcg64Xsh32
impl RefUnwindSafe for Lcg64Xsh32
impl Send for Lcg64Xsh32
impl Sync for Lcg64Xsh32
impl Unpin for Lcg64Xsh32
impl UnwindSafe for Lcg64Xsh32
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more