summary refs log tree commit diff
path: root/src/libcore/iter.rs
AgeCommit message (Expand)AuthorLines
2015-09-03take mapped function by mutable referencellogiq-4/+4
2015-09-03clippy improvements to iteratorsllogiq-6/+6
2015-08-27Auto merge of #28028 - tshepang:add-size_hint-example, r=alexcrichtonbors-0/+7
2015-08-27Auto merge of #27975 - sfackler:iter-order-methods, r=aturonbors-87/+212
2015-08-26Make iter::order functions into methods on IteratorSteven Fackler-87/+212
2015-08-26doc: add Iterator::size_hint exampleTshepang Lekhonkhobe-0/+7
2015-08-25Correct iterator adaptor ChainUlrik Sverdrup-25/+71
2015-08-15core: Fill out issues for unstable featuresAlex Crichton-14/+27
2015-08-15Auto merge of #27845 - dylanmckay:abstract-pointer-size-away, r=alexcrichtonbors-1/+3
2015-08-15Iterator::all() - document short-circuiting property parallel to any()Georg Brandl-0/+2
2015-08-15Reduce libcore/liballoc's dependence on pointer sizesDylan McKay-1/+3
2015-08-14Auto merge of #27641 - nikomatsakis:soundness-rfc-1214, r=nrcbors-1/+1
2015-08-12Fallout in libs -- misc missing bounds uncovered by WF checks.Niko Matsakis-1/+1
2015-08-12Remove all unstable deprecated functionalityAlex Crichton-544/+1
2015-08-09doc/core: fix description of `nth` functionVincent Bernat-2/+1
2015-07-29Rollup merge of #27326 - steveklabnik:doc_show_use, r=GankroSteve Klabnik-7/+14
2015-07-27std: Deprecate a number of unstable featuresAlex Crichton-0/+13
2015-07-27Show appropriate feature flags in docsSteve Klabnik-7/+14
2015-07-20s/has gained/has not gained/gPaolo Falabella-4/+4
2015-07-01Make the unused_mut lint smarter with respect to locals.Ariel Ben-Yehuda-2/+2
2015-06-17More test fixes and fallout of stability changesAlex Crichton-2/+20
2015-06-17std: Stabilize the `iter_{once,empty}` featuresAlex Crichton-12/+12
2015-06-17std: Deprecate iter::{Unfold, Iterate}Alex Crichton-0/+12
2015-06-17std: Deprecate the RandomAccessIterator traitAlex Crichton-0/+4
2015-06-17Fallout in tests and docs from feature renamingsAlex Crichton-9/+9
2015-06-17core: Split apart the global `core` featureAlex Crichton-34/+39
2015-06-11Auto merge of #26190 - Veedrac:no-iter, r=alexcrichtonbors-6/+6
2015-06-10Removed many pointless calls to *iter() and iter_mut()Joshua Landau-6/+6
2015-06-10core: impl Clone for option::IntoIter and iter::OnceUlrik Sverdrup-0/+1
2015-06-06Remove many unneeded feature annotations in the docsSteve Klabnik-11/+2
2015-05-29Implement RFC 771: std::iter::onceNathaniel Theis-0/+94
2015-05-25Auto merge of #25698 - mdinger:flat_map, r=steveklabnikbors-10/+9
2015-05-25Auto merge of #25756 - tshepang:needless-cloned, r=steveklabnikbors-1/+1
2015-05-25doc: add example for Iterator::cloned()Tshepang Lekhonkhobe-2/+13
2015-05-24doc: cloned() and mut not neededTshepang Lekhonkhobe-1/+1
2015-05-22Simplify flat_map examplemdinger-10/+9
2015-05-19Rollup merge of #25591 - rick68:patch-2, r=alexcrichtonManish Goregaokar-1/+1
2015-05-19Update iter.rsWei-Ming Yang-1/+1
2015-05-16std: Fix missing stability on iter::ClonedAlex Crichton-1/+1
2015-05-10doc: unwrap is discouraged, so use SomeTshepang Lekhonkhobe-34/+34
2015-05-09Convert #[lang="..."] to #[lang = "..."]Nick Hamann-1/+1
2015-05-08doc: the prevailing convention is to use assert_eq! when 2 values are comparedTshepang Lekhonkhobe-15/+15
2015-05-07Rollup merge of #25144 - killercup:docs/iter-fold-reduce, r=steveklabnikSteve Klabnik-0/+2
2015-05-06Make overflow behaviour more obvious in the iterator module of `libcore`Tobias Bucher-6/+58
2015-05-06Iter Docs: Mention 'reduce' and 'inject'Pascal Hertleif-0/+2
2015-05-05Optimize iterator adapters.Steven Allen-18/+145
2015-05-01Auto merge of #25006 - alexcrichton:unstable-indexing, r=aturonbors-9/+4
2015-05-01std: Remove index notation on slice iteratorsAlex Crichton-9/+4
2015-05-01iterator: Add `StepBy::size_hint` methodcritiqjo-15/+41
2015-04-29Auto merge of #24865 - bluss:range-size, r=alexcrichtonbors-4/+35