Struct rand::distributions::uniform::UniformFloat   
source · pub struct UniformFloat<X> { /* private fields */ }Expand description
The back-end implementing UniformSampler for floating-point types.
Unless you are implementing UniformSampler for your own type, this type
should not be used directly, use Uniform instead.
§Implementation notes
Instead of generating a float in the [0, 1) range using Standard, the
UniformFloat implementation converts the output of an PRNG itself. This
way one or two steps can be optimized out.
The floats are first converted to a value in the [1, 2) interval using a
transmute-based method, and then mapped to the expected range with a
multiply and addition. Values produced this way have what equals 23 bits of
random digits for an f32, and 52 for an f64.
Trait Implementations§
source§impl<X: Clone> Clone for UniformFloat<X>
 
impl<X: Clone> Clone for UniformFloat<X>
source§fn clone(&self) -> UniformFloat<X>
 
fn clone(&self) -> UniformFloat<X>
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl<X: Debug> Debug for UniformFloat<X>
 
impl<X: Debug> Debug for UniformFloat<X>
source§impl<X: PartialEq> PartialEq for UniformFloat<X>
 
impl<X: PartialEq> PartialEq for UniformFloat<X>
source§impl UniformSampler for UniformFloat<f32>
 
impl UniformSampler for UniformFloat<f32>
source§fn new<B1, B2>(low_b: B1, high_b: B2) -> Self
 
fn new<B1, B2>(low_b: B1, high_b: B2) -> Self
Construct self, with inclusive lower bound and exclusive upper bound
[low, high). Read moresource§fn new_inclusive<B1, B2>(low_b: B1, high_b: B2) -> Self
 
fn new_inclusive<B1, B2>(low_b: B1, high_b: B2) -> Self
Construct self, with inclusive bounds 
[low, high]. Read moresource§fn sample_single<R: Rng + ?Sized, B1, B2>(
    low_b: B1,
    high_b: B2,
    rng: &mut R,
) -> Self::X
 
fn sample_single<R: Rng + ?Sized, B1, B2>( low_b: B1, high_b: B2, rng: &mut R, ) -> Self::X
Sample a single value uniformly from a range with inclusive lower bound
and exclusive upper bound 
[low, high). Read moresource§impl UniformSampler for UniformFloat<f64>
 
impl UniformSampler for UniformFloat<f64>
source§fn new<B1, B2>(low_b: B1, high_b: B2) -> Self
 
fn new<B1, B2>(low_b: B1, high_b: B2) -> Self
Construct self, with inclusive lower bound and exclusive upper bound
[low, high). Read moresource§fn new_inclusive<B1, B2>(low_b: B1, high_b: B2) -> Self
 
fn new_inclusive<B1, B2>(low_b: B1, high_b: B2) -> Self
Construct self, with inclusive bounds 
[low, high]. Read moresource§fn sample_single<R: Rng + ?Sized, B1, B2>(
    low_b: B1,
    high_b: B2,
    rng: &mut R,
) -> Self::X
 
fn sample_single<R: Rng + ?Sized, B1, B2>( low_b: B1, high_b: B2, rng: &mut R, ) -> Self::X
Sample a single value uniformly from a range with inclusive lower bound
and exclusive upper bound 
[low, high). Read moreimpl<X: Copy> Copy for UniformFloat<X>
impl<X> StructuralPartialEq for UniformFloat<X>
Auto Trait Implementations§
impl<X> Freeze for UniformFloat<X>where
    X: Freeze,
impl<X> RefUnwindSafe for UniformFloat<X>where
    X: RefUnwindSafe,
impl<X> Send for UniformFloat<X>where
    X: Send,
impl<X> Sync for UniformFloat<X>where
    X: Sync,
impl<X> Unpin for UniformFloat<X>where
    X: Unpin,
impl<X> UnwindSafe for UniformFloat<X>where
    X: UnwindSafe,
Blanket Implementations§
§impl<T> Any for Twhere
    T: 'static + ?Sized,
 
impl<T> Any for Twhere
    T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
    T: ?Sized,
 
impl<T> Borrow<T> for Twhere
    T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
 
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)