[][src]Trait sobol::InternalType

pub trait InternalType: PrimInt + Unsigned + One + Zero + AddAssign + BitXorAssign + Sub<Output = Self> + Mul<Output = Self> + Shl<usize, Output = Self> + Shr<usize, Output = Self> + BitAnd<Output = Self> + BitXor<Output = Self> + Copy + PartialEq + PartialOrd + FromStr + Display {
    const BITS: usize;
}

Sequences are computed internally using unsigned types with the following capabilities

Associated Constants

const BITS: usize

Loading content...

Implementations on Foreign Types

impl InternalType for u8[src]

InternalType implementation for 8-bit values

impl InternalType for u16[src]

InternalType implementation for 16-bit values

impl InternalType for u32[src]

InternalType implementation for 32-bit values

impl InternalType for u64[src]

InternalType implementation for 64-bit values

impl InternalType for u128[src]

InternalType implementation for 128-bit values

Loading content...

Implementors

Loading content...