Rollup merge of #37236 - bluss:range-argument, r=alexcrichton

std::collections: Reexport libcollections's range module

This is overdue, even if range and RangeArgument is still unstable.
The stability attributes are the same ones as the other unstable item
(Bound) here, they don't seem to matter.
This commit is contained in:
Eduard-Mihai Burtescu 2016-10-19 08:00:03 +03:00 committed by GitHub
commit ad241dfa65
2 changed files with 4 additions and 0 deletions

View File

@ -425,6 +425,9 @@
#[stable(feature = "rust1", since = "1.0.0")]
pub use self::hash_set::HashSet;
#[stable(feature = "rust1", since = "1.0.0")]
pub use core_collections::range;
mod hash;
#[stable(feature = "rust1", since = "1.0.0")]

View File

@ -224,6 +224,7 @@
#![feature(char_internals)]
#![feature(collections)]
#![feature(collections_bound)]
#![feature(collections_range)]
#![feature(compiler_builtins_lib)]
#![feature(const_fn)]
#![feature(core_float)]