Random

Struct Random 

Source
pub struct Random { /* private fields */ }
Expand description

Random Generator

Implementationsยง

Sourceยง

impl Random

Source

pub fn new(seed: i64) -> Random

Make a new random generator

Used default values for a, c and m

 a: 16807
 c: 0
 m: 2147483647
ยงExample
// Import Lib
use micro_rand::Random;

// Make a new random generator with seed 1234
let mut r = Random::new(1234);
Source

pub fn custom_new(seed: i64, a: i64, c: i64, m: i64) -> Random

Make a new random generator with custom values for a, c and m

ยงExample
// Import Lib
use micro_rand::Random;

// Make a new, custom random generator
let mut r = Random::custom_new(1234, 86284, 2, 7263957720);
Source

pub fn next_f64(&mut self) -> f64

Geth the next float 64 from a generator

ยงExample
// Import Lib
use micro_rand::Random;

// Make a new, custom random generator
let mut r = Random::new(1234);

// Get the next float 64
let f = r.next_f64();
Source

pub fn next_f32(&mut self) -> f32

Geth the next float 32 from a generator

ยงExample
// Import Lib
use micro_rand::Random;

// Make a new, custom random generator
let mut r = Random::new(1234);

// Get the next float 32
let f = r.next_f32();
Source

pub fn next_int_i64(&mut self, min: i64, max: i64) -> i64

Geth the next i64 from a generator within a range

ยงExample
// Import Lib
use micro_rand::Random;

// Make a new, custom random generator
let mut r = Random::new(1234);

// Get a random i64 between 0 and 100
let f = r.next_int_i64(0, 100);
Source

pub fn next_int_i32(&mut self, min: i32, max: i32) -> i32

Geth the next i32 from a generator within a range

ยงExample
// Import Lib
use micro_rand::Random;

// Make a new, custom random generator
let mut r = Random::new(1234);

// Get a random i32 between 0 and 100
let f = r.next_int_i32(0, 100);

Auto Trait Implementationsยง

Blanket Implementationsยง

Sourceยง

impl<T> Any for T
where T: 'static + ?Sized,

Sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Sourceยง

impl<T> Borrow<T> for T
where T: ?Sized,

Sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Sourceยง

impl<T> BorrowMut<T> for T
where T: ?Sized,

Sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Sourceยง

impl<T> From<T> for T

Sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

Sourceยง

impl<T, U> Into<U> for T
where U: From<T>,

Sourceยง

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Sourceยง

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Sourceยง

type Error = Infallible

The type returned in the event of a conversion error.
Sourceยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Sourceยง

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Sourceยง

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

The type returned in the event of a conversion error.
Sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.