diff options
| author | Aaron Turon <aturon@mozilla.com> | 2015-01-04 16:35:20 -0800 |
|---|---|---|
| committer | Aaron Turon <aturon@mozilla.com> | 2015-01-05 14:08:22 -0800 |
| commit | cb765ce7e190c70313858738e7427d99338a4f3f (patch) | |
| tree | 757ef8e947e4865fdbe10fb388b67a45bb0179a3 /src/libstd | |
| parent | 121f6c66734301c1d29014f2ef0b58f21fcf1811 (diff) | |
| download | rust-cb765ce7e190c70313858738e7427d99338a4f3f.tar.gz rust-cb765ce7e190c70313858738e7427d99338a4f3f.zip | |
Stabilize collection modules
The earlier collections stabilization did not cover the modules themselves. This commit marks as stable those modules whose types have been stabilized.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/collections/mod.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libstd/collections/mod.rs b/src/libstd/collections/mod.rs index c0445fb5aea..ef9d28bbbb2 100644 --- a/src/libstd/collections/mod.rs +++ b/src/libstd/collections/mod.rs @@ -309,7 +309,7 @@ //! } //! ``` -#![experimental] +#![stable] pub use core_collections::{BinaryHeap, Bitv, BitvSet, BTreeMap, BTreeSet}; pub use core_collections::{DList, RingBuf, VecMap}; @@ -322,11 +322,13 @@ pub use self::hash_set::HashSet; mod hash; +#[stable] pub mod hash_map { //! A hashmap pub use super::hash::map::*; } +#[stable] pub mod hash_set { //! A hashset pub use super::hash::set::*; |
