about summary refs log tree commit diff
path: root/src/libstd/rand/mod.rs
AgeCommit message (Expand)AuthorLines
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-5/+5
2015-02-04Auto merge of #21892 - huonw:deprecate-rand, r=alexcrichtonbors-0/+3
2015-02-04Deprecate in-tree `rand`, `std::rand` and `#[derive(Rand)]`.Huon Wilson-0/+3
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-1/+1
2015-01-30Remove all `i` suffixesTobias Bucher-14/+14
2015-01-29convert remaining `range(a, b)` to `a..b`Jorge Aparicio-1/+1
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-8/+8
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-2/+2
2015-01-28Merge remote-tracking branch 'origin/master' into rollupManish Goregaokar-1/+1
2015-01-28Rollup merge of #21676 - Victory:fix-deprication-in-random, r=alexcrichtonManish Goregaokar-27/+27
2015-01-27Merge remote-tracking branch 'rust-lang/master'Brian Anderson-1/+1
2015-01-26Don't use if we can avoid itVictory-20/+20
2015-01-26cleanup depricated `uint` in rand mod and rand osVictory-27/+27
2015-01-26Fallout of io => old_ioAlex Crichton-1/+1
2015-01-23Set unstable feature names appropriatelyBrian Anderson-1/+1
2015-01-21Remove 'since' from unstable attributesBrian Anderson-1/+1
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-1/+1
2015-01-17Register new snapshots.Eduard Burtescu-2/+2
2015-01-12Add note about TLS lookups in random()Steve Klabnik-1/+26
2015-01-08Improvements to feature stagingBrian Anderson-1/+1
2015-01-07Test fixes and rebase conflictsAlex Crichton-1/+1
2015-01-08Rename `target_word_size` to `target_pointer_width`Nick Cameron-2/+2
2015-01-06More test fixesAlex Crichton-1/+1
2015-01-06core: split into fmt::Show and fmt::StringSean McArthur-2/+2
2015-01-05More test fixes!Alex Crichton-2/+2
2015-01-05Implement Clone for PRNGsSimonas Kazlauskas-1/+2
2015-01-03Remove deprecated functionalityAlex Crichton-2/+2
2015-01-03sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rsJorge Aparicio-1/+1
2015-01-03std: fix falloutJorge Aparicio-1/+1
2015-01-02std: Stabilize the prelude moduleAlex Crichton-2/+2
2015-01-02More falloutNick Cameron-1/+1
2014-12-28Rename TaskRng to ThreadRngSimonas Kazlauskas-44/+44
2014-12-20Fix small typos in std::rand documentationJake Goulding-2/+2
2014-12-19libstd: use `#[deriving(Copy)]`Jorge Aparicio-3/+1
2014-12-18librustc: Always parse `macro!()`/`macro![]` as expressions if notPatrick Walton-1/+1
2014-12-09rollup merge of #19614: steveklabnik/gh19599Alex Crichton-1/+1
2014-12-08librustc: Make `Copy` opt-in.Niko Matsakis-1/+6
2014-12-08auto merge of #19378 : japaric/rust/no-as-slice, r=alexcrichtonbors-3/+3
2014-12-07remove usage of notrust from the docsSteve Klabnik-1/+1
2014-12-06libstd: remove unnecessary `as_slice()` callsJorge Aparicio-3/+3
2014-12-05Utilize fewer reexportsCorey Farwell-1/+1
2014-11-25Fallout from stabilizationAaron Turon-1/+1
2014-11-23std: Add a new top-level thread_local moduleAlex Crichton-19/+12
2014-11-17Fix fallout from coercion removalNick Cameron-6/+6
2014-11-06std::rand::OsRng: Use `getrandom` syscall on Linuxklutzy-2/+6
2014-10-30collections: Enable IndexMut for some collectionsAlex Crichton-1/+1
2014-10-29Rename fail! to panic!Steve Klabnik-6/+6
2014-09-30Include ChaCha pseudorandom generatorSamuel Neves-1/+1
2014-09-16Fallout from renamingAaron Turon-1/+1
2014-08-26Use temp vars for implicit coercion to ^[T]Nick Cameron-3/+6