about summary refs log tree commit diff
path: root/library/core/src/iter/adapters/array_chunks.rs
AgeCommit message (Expand)AuthorLines
2024-04-04force exhaustion in iter::ArrayChunks::into_remainderArthur Carcano-1/+14
2024-02-15Replace `NonZero::<_>::new` with `NonZero::new`.Markus Reiter-1/+1
2024-02-15Use generic `NonZero` internally.Markus Reiter-4/+4
2023-12-10remove redundant importssurechen-1/+1
2023-09-03Expand in-place iteration specialization to Flatten, FlatMap and ArrayChunksThe 8472-1/+33
2023-02-04Allow canonicalizing the `array::map` loop in trusted casesScott McMurray-10/+4
2023-02-03Replace `ConstFnMutClosure` with const closuresDeadbeef-4/+2
2022-11-08document and improve array Guard typeThe 8472-3/+5
2022-11-07simplification: do not process the ArrayChunks remainder in fold()The 8472-18/+2
2022-11-07specialize iter::ArrayChunks::fold for TrustedRandomAccess itersThe 8472-3/+86
2022-09-26Use a macro to not have to copy-paste `ConstFnMutClosure::new(&mut fold, Neve...Scott McMurray-16/+3
2022-09-23Constifed Try traitonestacked-4/+5
2022-08-12fill-in tracking issue for `feature(iter_array_chunks)`Maybe Waffle-6/+6
2022-08-12address review commentsMaybe Waffle-6/+8
2022-08-02Use `next_chunk` in `ArrayChunks` implMaybe Waffle-132/+37
2022-08-01Simplify `ArrayChunks::{,r}fold` implsMaybe Waffle-46/+4
2022-08-01Simplify `ArrayChunks::is_empty`Maybe Waffle-1/+1
2022-08-01Remove `Fuse` from `ArrayChunks` implementationMaybe Waffle-3/+3
2022-08-01Use `#[track_caller]` to make panic in `Iterator::array_chunks` nicerMaybe Waffle-0/+1
2022-08-01Remove incorrect impl `TrustedLen` for `ArrayChunks`Maybe Waffle-9/+2
2022-08-01Forward `ArrayChunks::next{,_back}` to `try_{for_each,rfold}`Maybe Waffle-42/+2
2022-08-01Remove `array::IntoIter::with_partial` -- an artifact of the past, once used ...Maybe Waffle-3/+4
2022-08-01Use `array::IntoIter` for the `ArrayChunks` remainderRoss MacArthur-79/+14
2022-08-01Add `Iterator::array_chunks()`Ross MacArthur-0/+427