summary refs log tree commit diff
path: root/src/test/bench/core-map.rs
AgeCommit message (Expand)AuthorLines
2013-05-29librustc: Stop reexporting the standard modules from prelude.Patrick Walton-2/+5
2013-05-22test: Update tests to use the new syntax.Patrick Walton-8/+8
2013-05-19Use assert_eq! rather than assert! where possibleCorey Richardson-3/+3
2013-05-08test: Fix tests and the pipe compilerPatrick Walton-1/+1
2013-04-24libcore: unify `gen_<type>` methods on `rand::RngUtil` into the generic `gen`.Huon Wilson-0/+1
2013-04-24libcore: remove @Rng from rand, and use traits instead.Huon Wilson-1/+1
2013-04-19librustc: Switch the `@`s in types with `~`Patrick Walton-0/+1
2013-04-03rename Linear{Map,Set} => Hash{Map,Set}Daniel Micay-6/+6
2013-04-03hashmap: rm linear namespaceDaniel Micay-1/+1
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-6/+6
2013-03-26fix the core-map benchmark's descending rangeDaniel Micay-3/+3
2013-03-21replace the core-map benchmarkDaniel Micay-247/+86
2013-03-11librustc: Replace all uses of `fn()` with `&fn()`. rs=defunPatrick Walton-1/+1
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-12/+12
2013-02-19test: fix seeded_rng usesGraydon Hoare-4/+4
2013-02-05oldmap: use &K instead of K in find and getPatrick Walton-2/+2
2013-02-05Revert "oldmap: use &K instead of K in find and get"Graydon Hoare-2/+2
2013-02-03oldmap: use &K instead of K in find and getDaniel Micay-2/+2
2013-02-03Merge remote-tracking branch 'thestinger/old_map' into incomingBrian Anderson-10/+10
2013-02-03Fixed `fmt!`, tests, doc-tests.Marvin Löbel-15/+15
2013-02-03oldmap: &K instead of K for the remove parameterDaniel Micay-2/+2
2013-02-03rename map -> oldmap and mark it as deprecatedDaniel Micay-8/+8
2013-01-23fix core-map.rs benchmarkDaniel Micay-33/+175
2013-01-23switch LinearMap to current constructor conventionDaniel Micay-2/+2
2013-01-23rename send_map to hashmapDaniel Micay-1/+1
2012-12-28test: Fix benchmarks. rs=rustbotPatrick Walton-4/+4
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-10-04Remove arg vectors from main functions. Stop supporting them.Brian Anderson-1/+2
2012-09-27Demode randTim Chevalier-2/+2
2012-09-25use + mode for (almost) everything when not using legacy modesNiko Matsakis-1/+1
2012-09-19Remove redundant hashmap constructor functions.Graydon Hoare-2/+2
2012-09-11Convert 'use' to 'extern mod'. Remove old 'use' syntaxBrian Anderson-1/+1
2012-09-10Convert std::map to camel caseBrian Anderson-4/+4
2012-09-10Rename the poorly named Managed<T> type to Mut<T>.Niko Matsakis-5/+5
2012-09-07Convert field terminators to commas. Stop parsing semis.Brian Anderson-6/+6
2012-09-05test: "import" -> "use"Patrick Walton-5/+4
2012-08-30Migrate core::send_map to random, keyed hashes w/ hash::Hash trait.Graydon Hoare-2/+2
2012-08-27Camel case various core constructorsBrian Anderson-2/+2
2012-08-21implement a map testing benchmarkNiko Matsakis-0/+178