Struct rayon_core::registry::XorShift64Star
source · struct XorShift64Star {
state: Cell<u64>,
}
Expand description
xorshift* is a fast pseudorandom number generator which will even tolerate weak seeding, as long as it’s not zero.
Fields§
§state: Cell<u64>
Implementations§
Auto Trait Implementations§
impl !Freeze for XorShift64Star
impl !RefUnwindSafe for XorShift64Star
impl Send for XorShift64Star
impl !Sync for XorShift64Star
impl Unpin for XorShift64Star
impl UnwindSafe for XorShift64Star
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