about summary refs log tree commit diff
path: root/src/libstd/rand/distributions/range.rs
AgeCommit message (Collapse)AuthorLines
2014-03-12std: Move rand to librand.Huon Wilson-234/+0
This functionality is not super-core and so doesn't need to be included in std. It's possible that std may need rand (it does a little bit now, for io::test) in which case the functionality required could be moved to a secret hidden module and reexposed by librand. Unfortunately, using #[deprecated] here is hard: there's too much to mock to make it feasible, since we have to ensure that programs still typecheck to reach the linting phase.
2014-01-07stdtest: Fix all leaked trait importsAlex Crichton-3/+2
2013-12-23std: Fix all code examplesAlex Crichton-2/+2
2013-11-22std::rand: move TaskRng off @mut.Huon Wilson-6/+6
Replace with some unsafe code by storing a pointer into TLS-owned heap data.
2013-11-01std::rand: Move distributions to a subfolder.Huon Wilson-0/+235