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:
Ulrik Sverdrup 2016-10-17 21:26:29 +02:00
parent da7f8c540b
commit 0a0efcbebf
2 changed files with 4 additions and 0 deletions

View file

@ -425,6 +425,9 @@ pub use self::hash_map::HashMap;
#[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)]