Struct rand_pcg::Lcg64Xsh32
source · 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 copy 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
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)