about summary refs log tree commit diff
path: root/library/core/src/slice/iter.rs
AgeCommit message (Expand)AuthorLines
2022-03-24add #[must_use] to functions of slice and its iterators.Jendrik-0/+26
2022-03-10Use implicit capture syntax in format_argsT-O-R-U-S-3/+3
2022-02-01Auto merge of #86988 - thomcc:chunky-splitz-says-no-checking, r=the8472bors-7/+35
2021-12-15Rollup merge of #91916 - steffahn:fix-typos, r=dtolnayMatthias Krüger-1/+1
2021-12-14Rollup merge of #89825 - martinvonz:split-inclusive-empty, r=m-ou-seMatthias Krüger-2/+4
2021-12-14Fix a bunch of typosFrank Steffahn-1/+1
2021-10-31Pull `self.v.len()` out in `RChunks::next` as suggested in review commentsThom Chiovoloni-6/+7
2021-10-31Reference Chunks::next_back in more of the chunk iterators safety commentsThom Chiovoloni-34/+2
2021-10-31Address some issues in chunk iterator safety commentsThom Chiovoloni-25/+9
2021-10-31Carefully remove bounds checks from some chunk iteratorsThom Chiovoloni-6/+81
2021-10-31Rollup merge of #89897 - jkugelman:must-use-core, r=joshtriplettMatthias Krüger-0/+3
2021-10-30Add #[must_use] to remaining core functionsJohn Kugelman-0/+3
2021-10-21Make RSplit<T, P>: Clone not require T: CloneCaleb Sander-1/+11
2021-10-12Make split_inclusive() on an empty slice yield an empty outputMartin von Zweigbergk-2/+4
2021-10-11Add #[must_use] to as_type conversionsJohn Kugelman-0/+2
2021-10-10Add #[must_use] to conversions that move selfJohn Kugelman-0/+4
2021-08-12Test and fix size_hint for slice's [r]split* iteratorsFrank Steffahn-8/+25
2021-08-06Auto merge of #87462 - ibraheemdev:tidy-file-length-ignore-comment, r=Mark-Si...bors-1/+0
2021-07-28Add TrustedRandomAccessNoCoerce supertrait without requirements or guarantees...Frank Steffahn-14/+66
2021-07-25ignore comments in tidy-filelengthibraheemdev-1/+0
2021-07-02optimize chunks and chunks_mutThe8472-13/+11
2021-06-16Add doc(hidden) to all __iterator_get_uncheckedJacob Hoffman-Andrews-0/+2
2021-03-22Rollup merge of #82771 - emilio:iter-mut-as-slice, r=m-ou-seDylan DPC-2/+8
2021-03-21Bump slice_iter_mut_as_slice stable version.Mara Bos-2/+2
2021-03-19Rollup merge of #82570 - WaffleLapkin:split_whitespace_as_str, r=m-ou-seDylan DPC-2/+4
2021-03-04slice: Stabilize IterMut::as_slice.Emilio Cobos Álvarez-2/+8
2021-03-02Auto merge of #82043 - tmiasko:may-have-side-effect, r=kennytmbors-39/+13
2021-02-27Add `as_str` method for split whitespace str iteratorsWaffle-2/+4
2021-02-25Convert the rest of the standard library primitives to intra-doc linksJoshua Nelson-52/+52
2021-02-15Turn may_have_side_effect into an associated constantTomasz Miąsko-39/+13
2021-01-13Auto merge of #77858 - ijackson:split-inclusive, r=KodrAusbors-15/+11
2021-01-13bump split_inclusive stabilization to 1.51.0Ashley Mannix-11/+11
2021-01-07Enclose types in comments in backticksMarcus Svensson-4/+4
2021-01-07Fix type name in doc example for Iter and IterMutMarcus Svensson-4/+4
2021-01-04Stabilize split_inclusiveIan Jackson-15/+11
2020-12-31Replace the tracking issue for the slice_group_by featureClément Renault-12/+12
2020-12-10Implement a user friendly Debug on GroupBy and GroupByMutClément Renault-2/+14
2020-12-10Fix the fmt issuesClément Renault-17/+14
2020-12-10Mute the file-length errorClément Renault-0/+1
2020-12-10Mark the Iterator last self parameter as mutClément Renault-2/+2
2020-12-10Use none as the issue instead of 0Clément Renault-9/+9
2020-12-10Implement last on the GroupBy and GroupByMut IteratorsClément Renault-0/+10
2020-12-10Implement size_hint on the GroupBy and GroupByMut IteratorsClément Renault-0/+18
2020-12-10Implement it with only safe codeClément Renault-141/+97
2020-12-10Introduce the GroupBy and GroupByMut IteratorsClément Renault-0/+180
2020-10-27Rollup merge of #76635 - scottmcm:slice-as-chunks, r=LukasKalbertodtYuki Okushi-15/+4
2020-10-06Eliminate bounds checking in slice::WindowsAnthonyMikh-14/+15
2020-10-04Add [T]::as_chunks_mut (as unstable)Scott McMurray-15/+4
2020-09-26Rollup merge of #77076 - GuillaumeGomez:missing-code-examples-slice-iter, r=D...Ralf Jung-0/+164
2020-09-25Add missing code examples on slice iter typesGuillaume Gomez-0/+164