rust/library/alloc/tests
bors aeaa5c30e5 Auto merge of #111278 - EFanZh:implement-from-array-refs-for-vec, r=dtolnay
Implement `From<{&,&mut} [T; N]>` for `Vec<T>` where `T: Clone`

Currently, if `T` implements `Clone`, we can create a `Vec<T>` from an `&[T]` or an `&mut [T]`, can we also support creating a `Vec<T>` from an `&[T; N]` or an `&mut [T; N]`? Also, do I need to add `#[inline]` to the implementation?

ACP: rust-lang/libs-team#220. [Accepted]

Closes #100880.
2023-09-28 04:26:40 +00:00
..
arc.rs
autotraits.rs
borrow.rs
boxed.rs
btree_set_hash.rs
c_str.rs
const_fns.rs
cow_str.rs
fmt.rs
heap.rs
lib.rs
linked_list.rs
rc.rs
slice.rs
str.rs
string.rs
thin_box.rs
vec_deque.rs
vec.rs Auto merge of #111278 - EFanZh:implement-from-array-refs-for-vec, r=dtolnay 2023-09-28 04:26:40 +00:00