about summary refs log tree commit diff
path: root/src/libcore/hashmap.rs
AgeCommit message (Expand)AuthorLines
2013-04-28make way for a new iter moduleDaniel Micay-4/+4
2013-04-24libcore: unify `gen_<type>` methods on `rand::RngUtil` into the generic `gen`.Huon Wilson-1/+1
2013-04-24libcore: remove @Rng from rand, and use traits instead.Huon Wilson-1/+1
2013-04-19librustc: WIP patch for using the return value.Patrick Walton-23/+17
2013-04-16libcore,std,syntax,rustc: move tests into `mod tests`, make them private (no ...Huon Wilson-14/+14
2013-04-10core: changes in response to #5656Niko Matsakis-2/+171
2013-04-10Revert map.each to something which takes two parametersNiko Matsakis-23/+16
2013-04-03rename Linear{Map,Set} => Hash{Map,Set}Daniel Micay-67/+67
2013-04-03hashmap: rm linear namespaceDaniel Micay-852/+848
2013-03-29Merge remote-tracking branch 'remotes/origin/incoming' into serialErick Tryzelaar-143/+143
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-143/+143
2013-03-29Merge remote-tracking branch 'remotes/origin/incoming' into serialErick Tryzelaar-2/+2
2013-03-29core: add LinearMap::with_capacityErick Tryzelaar-3/+17
2013-03-28Removing unused importsAlex Crichton-2/+2
2013-03-27hashmap: improve docstringDaniel Micay-1/+4
2013-03-26librustc: Modify all code to use new lifetime binder syntaxPatrick Walton-4/+3
2013-03-26syntax: Removing uses of HashMapAlex Crichton-0/+5
2013-03-24expose find_mut in the Map traitDaniel Micay-11/+11
2013-03-24hashmap: add find_mut methodDaniel Micay-1/+34
2013-03-22librustc: Remove the `const` declaration form everywherePatrick Walton-1/+1
2013-03-22libcore: Remove `pure` from libcore. rs=depurePatrick Walton-58/+49
2013-03-22librustc: Remove all uses of `static` from functions. rs=destaticPatrick Walton-2/+2
2013-03-18librustc: Make the compiler ignore purity.Patrick Walton-4/+4
2013-03-18librustc: Convert all uses of old lifetime notation to new lifetime notation....Patrick Walton-8/+8
2013-03-14auto merge of #5365 : thestinger/rust/map, r=catamorphismbors-0/+13
2013-03-13librustc: Don't accept `as Trait` anymore; fix all occurrences of it.Patrick Walton-0/+1
2013-03-13add the mutate_values method to the Map traitDaniel Micay-0/+13
2013-03-11libsyntax: Stop parsing bare functions in preparation for switching them overPatrick Walton-1/+3
2013-03-11librustc: Replace all uses of `fn()` with `&fn()`. rs=defunPatrick Walton-12/+12
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-140/+140
2013-03-06Add manual &self/ and &static/ and /&self declarations thatNiko Matsakis-1/+3
2013-03-05libcore: Implement an `Equiv` trait and use it on hashmaps.Patrick Walton-1/+50
2013-03-04Remove unused imports throughout src/Alex Crichton-3/+0
2013-03-02make LinearMap fields privateDaniel Micay-313/+313
2013-02-28Fix implicit leaks of imports throughout librariesAlex Crichton-7/+6
2013-02-20librustc: Separate most trait bounds with '+'. rs=plussingPatrick Walton-15/+15
2013-02-15add reserve_at_least method to LinearMap/LinearSetDaniel Micay-4/+25
2013-02-15rm FIXME from LinearMap's to_bucketDaniel Micay-4/+2
2013-02-14auto merge of #4934 : nickdesaulniers/rust/issue4524cleanup, r=brsonbors-3/+3
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip...Patrick Walton-10/+10
2013-02-14Remove all final references to die!Nick Desaulniers-3/+3
2013-02-13Remove die!, raplace invocations with fail! Issue #4524 pt 3Nick Desaulniers-3/+3
2013-02-12Adjust borrow checker algorithm to address #4856 unsoundness,Niko Matsakis-2/+6
2013-02-10core: add LinearMap::find_or_insert{,_with}Erick Tryzelaar-13/+81
2013-02-10core: rename hashmap test functionsErick Tryzelaar-10/+10
2013-02-10libcore: LinearMap doesn't need to pass around the bucket vecErick Tryzelaar-10/+7
2013-02-07implement BaseIter for LinearMapDaniel Micay-17/+21
2013-02-07rm each method from the Map traitDaniel Micay-13/+13
2013-02-07Make ~fn non-copyable, make &fn copyable, split barefn/closure types,Niko Matsakis-4/+0
2013-02-06remove issue #3148 workarounds (no longer needed)Daniel Micay-5/+2