Crate sungod[][src]

A simple and super slim random crate, gifted from the sun God!

If you need decent random numbers pretty speedily, and hate to wait for compile-times, this is the crate for you! No dependencies, no worries!

A basic usage would look like this:

use sungod::Ra;
fn main() {
    let mut ra = Ra::default();
    assert_ne!(ra.sample::<u64>(), ra.sample::<u64>());
}

This is an implementation of xorwow, in a nice slim package, with some extra type safety. If you want to support randomizing more exotic types, you’ll have to implement it yourself. No fancy traits or anything in this crate.

NOTE: This create is not at all suitable for cryptographic use.

Structs

Ra

The struct that holds all the random state. Can be instanced as many times as you want!

Constants

DEFAULT_RANDOM_SEED

The sexiest of seeds.

Traits

Sample

How to make a random of whatever from random u64s.