Closed
Description
In the stdlib I'd like an iterator like chunks_exact that yields fixed-sized arrays, using a const usize argument (mostly useful for short arrays).
.chunks_exact_ct::<3>()
.map(|[a, b, c]| a + b + c)
Those arrays could allow better optimizations and also better pattern matching.
This issue has been assigned to @DutchGhost via this comment.