Skip to content

Commit aeaa5c3

Browse files
committed
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.
2 parents 2ba4eb2 + 27e10e2 commit aeaa5c3

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

library/alloc/src/vec/mod.rs

+30
Original file line numberDiff line numberDiff line change
@@ -3154,6 +3154,36 @@ impl<T: Clone> From<&mut [T]> for Vec<T> {
31543154
}
31553155
}
31563156

3157+
#[cfg(not(no_global_oom_handling))]
3158+
#[stable(feature = "vec_from_array_ref", since = "CURRENT_RUSTC_VERSION")]
3159+
impl<T: Clone, const N: usize> From<&[T; N]> for Vec<T> {
3160+
/// Allocate a `Vec<T>` and fill it by cloning `s`'s items.
3161+
///
3162+
/// # Examples
3163+
///
3164+
/// ```
3165+
/// assert_eq!(Vec::from(&[1, 2, 3]), vec![1, 2, 3]);
3166+
/// ```
3167+
fn from(s: &[T; N]) -> Vec<T> {
3168+
Self::from(s.as_slice())
3169+
}
3170+
}
3171+
3172+
#[cfg(not(no_global_oom_handling))]
3173+
#[stable(feature = "vec_from_array_ref", since = "CURRENT_RUSTC_VERSION")]
3174+
impl<T: Clone, const N: usize> From<&mut [T; N]> for Vec<T> {
3175+
/// Allocate a `Vec<T>` and fill it by cloning `s`'s items.
3176+
///
3177+
/// # Examples
3178+
///
3179+
/// ```
3180+
/// assert_eq!(Vec::from(&mut [1, 2, 3]), vec![1, 2, 3]);
3181+
/// ```
3182+
fn from(s: &mut [T; N]) -> Vec<T> {
3183+
Self::from(s.as_mut_slice())
3184+
}
3185+
}
3186+
31573187
#[cfg(not(no_global_oom_handling))]
31583188
#[stable(feature = "vec_from_array", since = "1.44.0")]
31593189
impl<T, const N: usize> From<[T; N]> for Vec<T> {

library/alloc/tests/vec.rs

+10
Original file line numberDiff line numberDiff line change
@@ -2562,3 +2562,13 @@ fn test_box_zero_allocator() {
25622562
// Ensure all ZSTs have been freed.
25632563
assert!(alloc.state.borrow().0.is_empty());
25642564
}
2565+
2566+
#[test]
2567+
fn test_vec_from_array_ref() {
2568+
assert_eq!(Vec::from(&[1, 2, 3]), vec![1, 2, 3]);
2569+
}
2570+
2571+
#[test]
2572+
fn test_vec_from_array_mut_ref() {
2573+
assert_eq!(Vec::from(&mut [1, 2, 3]), vec![1, 2, 3]);
2574+
}

0 commit comments

Comments
 (0)