about summary refs log tree commit diff
path: root/src/libstd/iter.rs
AgeCommit message (Expand)AuthorLines
2014-02-22Move std::num::Integer to libnumBrendan Zabarauskas-7/+7
2014-02-18Spellcheck library docs.Huon Wilson-1/+1
2014-02-17Remove CloneableTuple and ImmutableTuple traitsBrendan Zabarauskas-1/+1
2014-02-11Fix broken link to the container guideSimon Sapin-1/+1
2014-02-11Move replace and swap to std::mem. Get rid of std::utilEdward Wang-2/+2
2014-01-31auto merge of #11789 : pongad/rust/master, r=kballardbors-0/+148
2014-01-31Fix minor doc typosVirgile Andreani-1/+1
2014-02-01Added minmax function.Michael Darakananda-0/+148
2014-01-25auto merge of #11790 : lfairy/rust/rename-num-consts, r=alexcrichtonbors-13/+13
2014-01-25Uppercase numeric constantsChris Wong-13/+13
2014-01-25Fixed iter's is_empty to use is_none() and added relevant test flagSalem Talha-1/+2
2014-01-23Update flip() to be rev().Sean Chalmers-24/+24
2014-01-23Rename Invert to Flip - Issue 10632Sean Chalmers-26/+26
2014-01-20Add operator trait constraints to std::num::{Zero, One} and document their ap...Brendan Zabarauskas-0/+6
2014-01-14renamed empty() to is_empty()Shamir Khodzha-4/+4
2014-01-11added empty() to PeekableShamir Khodzha-1/+15
2014-01-11Remove re-exports of std::io::stdio::{print, println} in the prelude.Brendan Zabarauskas-1/+1
2014-01-08Renamed Option::map_default and mutate_default to map_or and mutate_or_setMarvin Löbel-2/+2
2013-12-27Renamed ClonableIterator to CloneableIteratorAlexandros Tasos-4/+4
2013-12-23std: Fix all code examplesAlex Crichton-19/+27
2013-12-20Implement size_hint() for ByRef iteratorPalmer Cox-1/+2
2013-12-15std: fix spelling in docs.Huon Wilson-2/+2
2013-12-11Make 'self lifetime illegal.Erik Price-50/+50
2013-12-08Remove dead codesKiet Tran-1/+1
2013-11-26test: Remove non-procedure uses of `do` from compiletest, libstd tests,Patrick Walton-2/+2
2013-11-26librustc: Remove remaining uses of `&fn()` in favor of `||`.Patrick Walton-19/+19
2013-11-19libstd: Change all uses of `&fn(A)->B` over to `|A|->B` in libstdPatrick Walton-10/+10
2013-11-17Fixed docs for advance() in Iterator traitAndrei Formiga-6/+3
2013-11-17Fixed uses of get() to unwrap() in doc examples in std::iterAndrei Formiga-28/+28
2013-11-11Implement `size_hint` for RangeCorey Richardson-8/+80
2013-10-23Removed unnecessary comments and white spaces as suggestedreedlepee-27/+1
2013-10-23Removed Unnecessary comments and white spaces #4386reedlepee-2/+0
2013-10-23Making fields in std and extra : private #4386reedlepee-3/+31
2013-10-22Drop the '2' suffix from logging macrosAlex Crichton-6/+6
2013-10-16auto merge of #9634 : blake2-ppc/rust/by-ref-iter, r=thestingerbors-0/+44
2013-10-09option: rewrite the API to use compositionDaniel Micay-8/+8
2013-10-02auto merge of #9665 : alexcrichton/rust/snapshot, r=brsonbors-4/+4
2013-10-01Migrate users of 'loop' to 'continue'Alex Crichton-4/+4
2013-10-01remove the `float` typeDaniel Micay-3/+3
2013-09-30std: Remove usage of fmt!Alex Crichton-6/+6
2013-09-30std::iter: Introduce .by_ref() adaptorblake2-ppc-0/+44
2013-09-26Update the compiler to not use printf/printflnAlex Crichton-1/+1
2013-09-25rustdoc: Change all code-blocks with a scriptAlex Crichton-64/+64
2013-09-17Document a few undocumented modules in libstdAlex Crichton-4/+51
2013-09-15iter: add the edge case tests for `range` tooDaniel Micay-0/+10
2013-09-15iter: fix `RangeInclusive`'s `DoubleEndedIterator`Daniel Micay-3/+5
2013-09-15iter: fix `range_inclusive` when `start > stop`Daniel Micay-4/+10
2013-09-15fix range_step{,_inclusive} with negative stepDaniel Micay-16/+10
2013-09-14iter: add `RangeStep` and `RangeStepInclusive`Daniel Micay-1/+90
2013-09-14iter: move Counter impl to the proper placeDaniel Micay-14/+14