ISAAC64 - http://www.burtleburtle.net/bob/rand/isaacafa.html

Follows the general idea of the implementation from here with a few shortcuts. https://doc.rust-lang.org/rand/src/rand/prng/isaac64.rs.html

Fields

r: [256]u64,
m: [256]u64,
a: u64,
b: u64,
c: u64,
i: usize,

Functions

fn fill(self: *Isaac64, buf: []u8) void

No documentation provided.

fn init(init_s: u64) Isaac64

No documentation provided.

fn random(self: *Isaac64) Random

No documentation provided.