micro_rand

Crates.iomicro_rand
lib.rsmicro_rand
version0.0.1
sourcesrc
created_at2021-08-23 04:41:57.60231
updated_at2021-08-23 04:41:57.60231
description🎲 A tiny, no STD crate for generating (pseudo) random numbers.
homepage
repositoryhttps://github.com/Basicprogrammer10/micro_rand
max_upload_size
id440947
size42,664
Connor Slade (connorslade)

documentation

https://docs.rs/micro_rand

README

🎲 micro_rand

A tiny, no STD library for generating (pseudo) random numbers.

💠 Install

Just add the following to your Cargo.toml:

[dependencies]
micro_rand = "0.0.1"

📄 Info

Uses the Linear congruential generator algorithm to generate pseudo random numbers. You must supply a seed value in the form of a i64 integer.

💥 Examples

Super Simple Example

// Import Lib
use micro_rand::*;

// Create a new random generator with seed 1234
let mut rnd = Random::new(1234);

// Generate a Number!
let num1 = rnd.next_f64();

// Generate an int between two values
let num2 = rnd.next_int_i64(0, 100);
Commit count: 3

cargo fmt