rust/library/core
Lukas Kalbertodt c675af82b4
Add internal collect_into_array[_unchecked] to remove duplicate code
This does not suggest adding such a function to the public API. This is
just for the purpose of avoiding duplicate code. Many array methods
already contained the same kind of code and there are still many array
related methods to come (e.g. `Iterator::{chunks, map_windows, next_n,
...}`) which all basically need this functionality. Writing custom
`unsafe` code for each of those seems not like a good idea.
2021-02-15 17:52:33 +01:00
..
benches Add more benchmarks 2021-01-08 09:50:35 +00:00
src Add internal collect_into_array[_unchecked] to remove duplicate code 2021-02-15 17:52:33 +01:00
tests stabilize partition_point 2021-02-12 21:57:17 +09:00
Cargo.toml