Skip to content

Commit 4a95e97

Browse files
committed
Auto merge of #61953 - Centril:shared-from-iter, r=RalfJung
Add `impl<T> FromIterator<T> for Arc/Rc<[T]>` Add implementations of `FromIterator<T> for Arc/Rc<[T]>` with symmetrical logic. This also takes advantage of specialization in the case of iterators with known length (`TrustedLen`) to elide the final allocation/copying from a `Vec<T>` into `Rc<[T]>` because we can allocate the space for the `Rc<[T]>` directly when the size is known. This is the primary motivation and why this is to be preferred over `iter.collect::<Vec<_>>().into(): Rc<[T]>`. Moreover, this PR does some refactoring in some places. r? @RalfJung for the code cc @alexcrichton from T-libs
2 parents a9c7feb + 85def30 commit 4a95e97

File tree

6 files changed

+652
-140
lines changed

6 files changed

+652
-140
lines changed

src/liballoc/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@
9393
#![feature(ptr_offset_from)]
9494
#![feature(rustc_attrs)]
9595
#![feature(receiver_trait)]
96+
#![feature(slice_from_raw_parts)]
9697
#![feature(specialization)]
9798
#![feature(staged_api)]
9899
#![feature(std_internals)]

0 commit comments

Comments
 (0)