mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-22 02:00:00 +03:00
8597644255
Simplify Clone for Box<[T]> The bespoke `BoxBuilder` was basically a very simple `Vec`. Instead, let's clone to a real `Vec`, with all of its specialization for the task, then convert back to `Box<[T]>`.