[][src]Struct r1cs::LCG

pub struct LCG { /* fields omitted */ }

A simple linear congruential generator, with parameters taken from Numerical Recipes.

Methods

impl LCG[src]

pub fn new() -> Self[src]

pub fn next_u32(&mut self) -> u32[src]

pub fn next_element<F: Field>(&mut self) -> Element<F>[src]

pub fn next_biguint(&mut self, limit_exclusive: BigUint) -> BigUint[src]

Trait Implementations

impl Default for LCG[src]

Auto Trait Implementations

impl Send for LCG

impl Sync for LCG

impl Unpin for LCG

impl UnwindSafe for LCG

impl RefUnwindSafe for LCG

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]