about summary refs log tree commit diff
path: root/src/libstd/collections/hash/set.rs
AgeCommit message (Expand)AuthorLines
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-2/+2
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-1/+1
2015-01-25Merge remote-tracking branch 'rust-lang/master'Brian Anderson-5/+5
2015-01-23grandfathered -> rust1Brian Anderson-49/+49
2015-01-23Set unstable feature names appropriatelyBrian Anderson-3/+3
2015-01-21Remove 'since' from unstable attributesBrian Anderson-3/+3
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-52/+53
2015-01-20std: Rename Show/String to Debug/DisplayAlex Crichton-5/+5
2015-01-10Add ExactSizeIterator impls for Hash{Map, Set, Table}Chase Southwood-9/+21
2015-01-07std: Stabilize the std::hash moduleAlex Crichton-90/+127
2015-01-06More test fixesAlex Crichton-1/+1
2015-01-06rollup merge of #20607: nrc/kindsAlex Crichton-1/+1
2015-01-06rollup merge of #20593: nikomatsakis/unused-tps-in-implAlex Crichton-0/+15
2015-01-06Register new snapshotsAlex Crichton-3/+0
2015-01-07markers -> markerNick Cameron-1/+1
2015-01-06core: split into fmt::Show and fmt::StringSean McArthur-6/+6
2015-01-06Fix fallout in libs. For the most part I just tagged impls as `#[old_impl_che...Niko Matsakis-0/+15
2015-01-07Change `std::kinds` to `std::markers`; flatten `std::kinds::marker`Nick Cameron-1/+1
2015-01-05Revert "Remove i suffix in docs"Alex Crichton-14/+14
2015-01-05rollup merge of #20482: kmcallister/macro-reformAlex Crichton-1/+3
2015-01-05Merge remote-tracking branch 'nrc/sized-2' into rollupAlex Crichton-2/+2
2015-01-05rollup merge of #20581: apasel422/extendAlex Crichton-1/+1
2015-01-05rollup merge of #20560: aturon/stab-2-iter-ops-sliceAlex Crichton-1/+1
2015-01-06FalloutNick Cameron-2/+2
2015-01-05Remove i suffix in docsSteve Klabnik-14/+14
2015-01-05Stabilization of impls and fallout from stabilizationAaron Turon-1/+1
2015-01-05Use $crate and macro reexport to reduce duplicated codeKeegan McAllister-1/+3
2015-01-05remove unnecessary `Default` bound from `Hash{Map,Set}`'s `Extend` implAndrew Paseltiner-1/+1
2015-01-03Remove deprecated functionalityAlex Crichton-8/+1
2015-01-03sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rsJorge Aparicio-2/+2
2015-01-03sed -i -s 's/\bmod}/self}/g' **/*.rsJorge Aparicio-1/+1
2015-01-03sed -i -s 's/\bmod,/self,/g' **/*.rsJorge Aparicio-1/+1
2015-01-03use assoc types in binop traitsJorge Aparicio-4/+12
2015-01-03std: fix falloutJorge Aparicio-9/+23
2015-01-02std: Stabilize the prelude moduleAlex Crichton-1/+1
2014-12-31stabilize more of collectionsAlexis Beingessner-25/+45
2014-12-30Stabilize cmpAaron Turon-0/+2
2014-12-22rollup merge of #19891: nikomatsakis/unique-fn-types-3Alex Crichton-0/+3
2014-12-22rollup merge of #20056: MrFloya/iter_renameAlex Crichton-2/+2
2014-12-22Insert coercions to fn pointer types required for the new typesNiko Matsakis-0/+3
2014-12-22Added missing renames:Florian Wilkens-2/+2
2014-12-21Implement BitOps for HashSetChase Southwood-4/+115
2014-12-21rollup merge of #19993: bluss/setalgebraitemsAlex Crichton-46/+83
2014-12-21auto merge of #19946 : cgaebel/rust/hashmap-drain-iter, r=gankrobors-1/+56
2014-12-20Fix fallout of removing import_shadowing in tests.Eduard Burtescu-1/+0
2014-12-19hashset: Clean up and rename the HashSet iteratorsbluss-46/+83
2014-12-18[collections] Adds `drain`: a way to sneak out the elements while clearing.Clark Gaebel-1/+56
2014-12-17rollup merge of #19935: cgaebel/hashmap-tuple-indexingAlex Crichton-1/+1
2014-12-17rollup merge of #19902: alexcrichton/second-pass-memAlex Crichton-0/+2
2014-12-17rollup merge of #19770: csouth3/iterator-wrapperstructsAlex Crichton-22/+60