1
Fork 0

Revert "Stabilize RangeArgument"

This reverts commit 143206d54d.
This commit is contained in:
Steven Fackler 2017-06-30 08:34:53 -10:00
parent e72580cf09
commit 0a9c13624d
15 changed files with 217 additions and 187 deletions

View file

@ -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'.
///