summary refs log tree commit diff
path: root/src/libstd/collections/hash/set.rs
AgeCommit message (Expand)AuthorLines
2015-07-27Show appropriate feature flags in docsSteve Klabnik-2/+4
2015-06-17std: Split the `std_misc` featureAlex Crichton-6/+8
2015-06-10Removed many pointless calls to *iter() and iter_mut()Joshua Landau-5/+5
2015-05-17Make debug builders take &mut self, add entries methodSteven Fackler-1/+1
2015-05-03Fix Derive Notice for HashSetPascal Hertleif-2/+2
2015-05-03Clean up HashSet ExamplesPascal Hertleif-5/+5
2015-05-03HashSet Docs: Split First ParagraphPascal Hertleif-4/+6
2015-04-21rollup merge of #24541: alexcrichton/issue-24538Alex Crichton-29/+24
2015-04-21Model lexer: Fix remaining issuesPiotr Czarnecki-2/+0
2015-04-17std: Add Default/IntoIterator/ToOwned to the preludeAlex Crichton-29/+24
2015-04-14Positive case of `len()` -> `is_empty()`Tamir Duberstein-1/+1
2015-04-13pluralize doc comment verbs and add missing periodsAndrew Paseltiner-5/+5
2015-04-07std: Deny most warnings in doctestsAlex Crichton-8/+0
2015-03-31std: Remove #[old_orphan_check] from PartialEqAlex Crichton-1/+1
2015-03-29Rollup merge of #23814 - steveklabnik:gh23320, r=alexcrichtonManish Goregaokar-1/+10
2015-03-29Auto merge of #23810 - sfackler:debug-collections, r=alexcrichtonbors-8/+1
2015-03-28Remove IteratorExtSteven Fackler-3/+1
2015-03-28Document properties for Eq + HashSteve Klabnik-1/+10
2015-03-28Fold collections debug implsSteven Fackler-5/+1
2015-03-28Update debug helpers and add list builderSteven Fackler-7/+4
2015-03-23rollup merge of #23598: brson/gateAlex Crichton-0/+10
2015-03-23Add #![feature] attributes to doctestsBrian Anderson-0/+10
2015-03-23implement `Clone` for various iteratorsAndrew Paseltiner-0/+25
2015-03-16document undefined collection behavior with interior mutabilityAndrew Paseltiner-0/+6
2015-03-11Example -> ExamplesSteve Klabnik-23/+23
2015-02-24Modify collection's `Debug` output to resemble in their content onlyTobias Bucher-3/+3
2015-02-18rollup merge of #22210: aturon/stab-final-borrowAlex Crichton-3/+3
2015-02-18Stabilize std::borrowAaron Turon-3/+3
2015-02-18rollup merge of #22491: Gankro/into_iterAlex Crichton-2/+3
2015-02-18make FromIterator use IntoIteratorAlexis-1/+2
2015-02-18make Extend use IntoIteratorAlexis-1/+1
2015-02-18std: Stabilize the `hash` moduleAlex Crichton-73/+48
2015-02-17Register new snapshotsAlex Crichton-30/+0
2015-02-17std: Stabilize the IntoIterator traitAlex Crichton-0/+2
2015-02-17Rollup merge of #22313 - japaric:iter, r=aturonManish Goregaokar-0/+32
2015-02-13add an associated `Item` type to `IntoIterator`Jorge Aparicio-0/+32
2015-02-13more int and cloned cleanup in collectionsAlexis-24/+24
2015-02-09std: Rename IntoIterator::Iter to IntoIterAlex Crichton-2/+2
2015-02-07fix outdated docsAlexis-11/+11
2015-02-05misc collections code cleanupAlexis-33/+33
2015-02-02rollup merge of #21842: alexcrichton/issue-21839Alex Crichton-2/+2
2015-02-02remove unused mut qualifiersJorge Aparicio-1/+1
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-3/+3
2015-02-02impl IntoIterator for HashSetJorge Aparicio-1/+27
2015-02-01std: Remove extra type params on iter adaptorsAlex Crichton-2/+2
2015-01-31Kill more `isize`sTobias Bucher-2/+2
2015-01-30Remove all `i` suffixesTobias Bucher-31/+31
2015-01-29fix inference falloutJorge Aparicio-2/+2
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-2/+2