1
Fork 0

Merge crate collections into alloc

This commit is contained in:
Murarth 2017-06-13 15:52:59 -07:00
parent e40ef964fe
commit eadda7665e
97 changed files with 2348 additions and 2517 deletions

View file

@ -44,6 +44,7 @@ use core::cmp;
/// `shrink_to_fit`, and `from_box` will actually set RawVec's private capacity
/// field. This allows zero-sized types to not be special-cased by consumers of
/// this type.
#[allow(missing_debug_implementations)]
pub struct RawVec<T> {
ptr: Unique<T>,
cap: usize,