parent
e72580cf09
commit
0a9c13624d
15 changed files with 217 additions and 187 deletions
|
@ -74,8 +74,7 @@ use core::iter::{FromIterator, FusedIterator, TrustedLen};
|
|||
use core::mem;
|
||||
#[cfg(not(test))]
|
||||
use core::num::Float;
|
||||
use core::ops::{InPlace, Index, IndexMut, Place, Placer, RangeArgument};
|
||||
use core::ops::Bound::{Excluded, Included, Unbounded};
|
||||
use core::ops::{InPlace, Index, IndexMut, Place, Placer};
|
||||
use core::ops;
|
||||
use core::ptr;
|
||||
use core::ptr::Shared;
|
||||
|
@ -85,6 +84,8 @@ use borrow::ToOwned;
|
|||
use borrow::Cow;
|
||||
use boxed::Box;
|
||||
use raw_vec::RawVec;
|
||||
use super::range::RangeArgument;
|
||||
use Bound::{Excluded, Included, Unbounded};
|
||||
|
||||
/// A contiguous growable array type, written `Vec<T>` but pronounced 'vector'.
|
||||
///
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue