about summary refs log tree commit diff
path: root/src/libstd/rand/isaac.rs
AgeCommit message (Expand)AuthorLines
2014-01-30Remove Times traitBrendan Zabarauskas-2/+1
2014-01-07stdtest: Fix all leaked trait importsAlex Crichton-2/+1
2014-01-07std: Fill in all missing importsAlex Crichton-1/+2
2013-12-15std::vec: convert to(_mut)_ptr to as_... methods on &[] and &mut [].Huon Wilson-2/+2
2013-12-15std::vec: move pointless `raw::get` and `unsafe_get` functions.Huon Wilson-4/+4
2013-12-11Make 'self lifetime illegal.Erik Price-6/+6
2013-11-26libstd: Remove all non-`proc` uses of `do` from libstdPatrick Walton-5/+5
2013-10-23auto merge of #9810 : huonw/rust/rand3, r=alexcrichtonbors-7/+17
2013-10-23std::rand: seed ISAAC with no transmutes.Huon Wilson-7/+16
2013-10-23std::rand: use "nothing up your sleeve numbers" for ISAAC tests.Huon Wilson-18/+18
2013-10-23std::rand: documentation & references.Huon Wilson-7/+17
2013-10-09std::rand: Make Rng.next_u32 non-default, waiting for #7771.Huon Wilson-0/+6
2013-10-09std::rand: remove `seed`.Huon Wilson-36/+40
2013-10-09std::rand: add & split some tests.Huon Wilson-6/+31
2013-10-09std::rand: Add a trait for seeding RNGs: SeedableRng.Huon Wilson-80/+133
2013-10-09std::rand: Add an implementation of ISAAC64.Huon Wilson-1/+232
2013-10-09std::rand: move the Isaac implementation to its own file.Huon Wilson-0/+198