about summary refs log tree commit diff
path: root/src/libcoretest/iter.rs
AgeCommit message (Expand)AuthorLines
2016-05-24std: Stabilize APIs for the 1.10 releaseAlex Crichton-9/+0
2016-04-30Implement find() on Chain iteratorsGeorg Brandl-0/+13
2016-03-11cleanup int suffixes in libcoretestsrinivasreddy-4/+4
2016-03-04make skip a double ended iteratorOliver Schneider-0/+38
2016-01-30test: Deny warnings in {core,collections}testAlex Crichton-8/+8
2015-12-10std: Remove deprecated functionality from 1.5Alex Crichton-12/+0
2015-08-27remove calls to deprecated `iter::order` functionsAndrew Paseltiner-27/+26
2015-08-25Correct iterator adaptor ChainUlrik Sverdrup-0/+20
2015-08-12Remove all unstable deprecated functionalityAlex Crichton-186/+0
2015-06-10Removed many pointless calls to *iter() and iter_mut()Joshua Landau-16/+16
2015-05-29Implement RFC 771: std::iter::onceNathaniel Theis-0/+13
2015-05-05Optimize iterator adapters.Steven Allen-0/+215
2015-05-01iterator: Add `StepBy::size_hint` methodcritiqjo-1/+13
2015-04-27core: Fix size_hint for signed integer Range<T> iteratorsUlrik Sverdrup-0/+6
2015-04-21std: Bring back f32::from_str_radix as an unstable APIAlex Crichton-11/+0
2015-04-10Auto merge of #24180 - huonw:optimise-max-etc, r=alexcrichtonbors-0/+31
2015-04-10Optimise Iterator::{max, max_by, min, min_by}.Huon Wilson-0/+31
2015-04-08Make `sum` and `product` inherent methods on `Iterator`Tobias Bucher-6/+6
2015-03-31std: Clean out #[deprecated] APIsAlex Crichton-7/+7
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-38/+38
2015-03-13Deprecate range, range_step, count, distributionsAaron Turon-6/+6
2015-03-09Rename #[should_fail] to #[should_panic]Steven Fackler-1/+1
2015-03-05Remove integer suffixes where the types in compiled code are identical.Eduard Burtescu-4/+4
2015-03-03Switched to Box::new in many places.Felix S. Klock II-4/+7
2015-03-01Remove int/uint from libstd/lib.rsGuillaume Gomez-7/+7
2015-02-24Use arrays instead of vectors in testsVadim Petrochenkov-32/+21
2015-02-20fix a few 'variable does not need to be mutable' warningsTshepang Lekhonkhobe-8/+8
2015-02-18rollup merge of #22502: nikomatsakis/deprecate-bracket-bracketAlex Crichton-1/+1
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-1/+1
2015-02-18Remove usage of .map(|&foo| foo)Kevin Butler-21/+21
2015-02-18Opt for .cloned() over .map(|x| x.clone()) etc.Kevin Butler-1/+1
2015-02-10Deprecating i/u suffixes in libcoretestAlfie John-45/+45
2015-02-08Fix std::ops::Range size_hint and ExactSizeIterator implsUlrik Sverdrup-0/+1
2015-01-31Kill more `isize`sTobias Bucher-2/+2
2015-01-30Test fixes and rebase conflictsAlex Crichton-8/+8
2015-01-30rollup merge of #21631: tbu-/isize_policeAlex Crichton-90/+90
2015-01-30remove Copy impls from iteratorsJorge Aparicio-25/+25
2015-01-30Remove all `i` suffixesTobias Bucher-90/+90
2015-01-29convert remaining `range(a, b)` to `a..b`Jorge Aparicio-15/+15
2015-01-29`for x in range(a, b)` -> `for x in a..b`Jorge Aparicio-1/+1
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-4/+4
2015-01-23Auto merge of #21453 - Stebalien:exactsize, r=alexcrichtonbors-4/+57
2015-01-21Add test cases for ExactSizeIterator implsSteven Allen-4/+57
2015-01-19remove unnecessary parentheses from range notationJorge Aparicio-1/+1
2015-01-12cleanup: `&foo[0..a]` -> `&foo[..a]`Jorge Aparicio-10/+10
2015-01-07falloutNick Cameron-18/+17
2015-01-07Replace full slice notation with index callsNick Cameron-14/+14
2015-01-05More test fixes!Alex Crichton-1/+1
2015-01-03Remove deprecated functionalityAlex Crichton-1/+1
2015-01-03coretest: fix falloutJorge Aparicio-1/+3