Skip to content

Commit 831c929

Browse files
committed
Auto merge of #103406 - Jules-Bertholet:from_clone_slice_to_box, r=dtolnay
Loosen `From<&[T]> for Box<[T]>` bound to `T: Clone` Also loosens `From<Cow<'_, [T]>> for Box<[T]>`'s bound. [Discussion on Zulip](https://rust-lang.zulipchat.com/#narrow/stream/219381-t-libs/topic/From.3C.26.5BT.5D.3E.20impls.20consistency)
2 parents 89158e2 + 18d2c60 commit 831c929

File tree

1 file changed

+31
-8
lines changed

1 file changed

+31
-8
lines changed

library/alloc/src/boxed.rs

+31-8
Original file line numberDiff line numberDiff line change
@@ -1455,9 +1455,36 @@ where
14551455
}
14561456
}
14571457

1458+
/// Specialization trait used for `From<&[T]>`.
1459+
#[cfg(not(no_global_oom_handling))]
1460+
trait BoxFromSlice<T> {
1461+
fn from_slice(slice: &[T]) -> Self;
1462+
}
1463+
1464+
#[cfg(not(no_global_oom_handling))]
1465+
impl<T: Clone> BoxFromSlice<T> for Box<[T]> {
1466+
#[inline]
1467+
default fn from_slice(slice: &[T]) -> Self {
1468+
slice.to_vec().into_boxed_slice()
1469+
}
1470+
}
1471+
1472+
#[cfg(not(no_global_oom_handling))]
1473+
impl<T: Copy> BoxFromSlice<T> for Box<[T]> {
1474+
#[inline]
1475+
fn from_slice(slice: &[T]) -> Self {
1476+
let len = slice.len();
1477+
let buf = RawVec::with_capacity(len);
1478+
unsafe {
1479+
ptr::copy_nonoverlapping(slice.as_ptr(), buf.ptr(), len);
1480+
buf.into_box(slice.len()).assume_init()
1481+
}
1482+
}
1483+
}
1484+
14581485
#[cfg(not(no_global_oom_handling))]
14591486
#[stable(feature = "box_from_slice", since = "1.17.0")]
1460-
impl<T: Copy> From<&[T]> for Box<[T]> {
1487+
impl<T: Clone> From<&[T]> for Box<[T]> {
14611488
/// Converts a `&[T]` into a `Box<[T]>`
14621489
///
14631490
/// This conversion allocates on the heap
@@ -1471,19 +1498,15 @@ impl<T: Copy> From<&[T]> for Box<[T]> {
14711498
///
14721499
/// println!("{boxed_slice:?}");
14731500
/// ```
1501+
#[inline]
14741502
fn from(slice: &[T]) -> Box<[T]> {
1475-
let len = slice.len();
1476-
let buf = RawVec::with_capacity(len);
1477-
unsafe {
1478-
ptr::copy_nonoverlapping(slice.as_ptr(), buf.ptr(), len);
1479-
buf.into_box(slice.len()).assume_init()
1480-
}
1503+
<Self as BoxFromSlice<T>>::from_slice(slice)
14811504
}
14821505
}
14831506

14841507
#[cfg(not(no_global_oom_handling))]
14851508
#[stable(feature = "box_from_cow", since = "1.45.0")]
1486-
impl<T: Copy> From<Cow<'_, [T]>> for Box<[T]> {
1509+
impl<T: Clone> From<Cow<'_, [T]>> for Box<[T]> {
14871510
/// Converts a `Cow<'_, [T]>` into a `Box<[T]>`
14881511
///
14891512
/// When `cow` is the `Cow::Borrowed` variant, this

0 commit comments

Comments
 (0)