Skip to content

Commit 248b2ec

Browse files
committed
Stabilize Entry types
This commit marks as `#[stable]` the `Entry` types for the maps provided by `std`. The main reason these had been left unstable previously was uncertainty about an eventual trait design, but several plausible designs have been proposed that all work fine with the current type definitions.
1 parent 809a554 commit 248b2ec

File tree

5 files changed

+25
-25
lines changed

5 files changed

+25
-25
lines changed

src/libcollections/btree/map.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -124,26 +124,26 @@ pub struct RangeMut<'a, K: 'a, V: 'a> {
124124
}
125125

126126
/// A view into a single entry in a map, which may either be vacant or occupied.
127-
#[unstable(feature = "collections",
128-
reason = "precise API still under development")]
127+
#[stable(feature = "rust1", since = "1.0.0")]
129128
pub enum Entry<'a, K:'a, V:'a> {
130129
/// A vacant Entry
130+
#[stable(feature = "rust1", since = "1.0.0")]
131131
Vacant(VacantEntry<'a, K, V>),
132+
132133
/// An occupied Entry
134+
#[stable(feature = "rust1", since = "1.0.0")]
133135
Occupied(OccupiedEntry<'a, K, V>),
134136
}
135137

136138
/// A vacant Entry.
137-
#[unstable(feature = "collections",
138-
reason = "precise API still under development")]
139+
#[stable(feature = "rust1", since = "1.0.0")]
139140
pub struct VacantEntry<'a, K:'a, V:'a> {
140141
key: K,
141142
stack: stack::SearchStack<'a, K, V, node::handle::Edge, node::handle::Leaf>,
142143
}
143144

144145
/// An occupied Entry.
145-
#[unstable(feature = "collections",
146-
reason = "precise API still under development")]
146+
#[stable(feature = "rust1", since = "1.0.0")]
147147
pub struct OccupiedEntry<'a, K:'a, V:'a> {
148148
stack: stack::SearchStack<'a, K, V, node::handle::KV, node::handle::LeafOrInternal>,
149149
}
@@ -1115,9 +1115,9 @@ impl<'a, K, V> DoubleEndedIterator for RangeMut<'a, K, V> {
11151115
}
11161116

11171117
impl<'a, K: Ord, V> Entry<'a, K, V> {
1118-
#[unstable(feature = "collections",
1119-
reason = "matches collection reform v2 specification, waiting for dust to settle")]
11201118
/// Returns a mutable reference to the entry if occupied, or the VacantEntry if vacant
1119+
#[unstable(feature = "std_misc",
1120+
reason = "will soon be replaced by or_insert")]
11211121
pub fn get(self) -> Result<&'a mut V, VacantEntry<'a, K, V>> {
11221122
match self {
11231123
Occupied(entry) => Ok(entry.into_mut()),

src/libcollections/vec_map.rs

+9-7
Original file line numberDiff line numberDiff line change
@@ -67,26 +67,28 @@ pub struct VecMap<V> {
6767
}
6868

6969
/// A view into a single entry in a map, which may either be vacant or occupied.
70-
#[unstable(feature = "collections",
71-
reason = "precise API still under development")]
70+
71+
#[stable(feature = "rust1", since = "1.0.0")]
7272
pub enum Entry<'a, V:'a> {
7373
/// A vacant Entry
74+
#[stable(feature = "rust1", since = "1.0.0")]
7475
Vacant(VacantEntry<'a, V>),
76+
7577
/// An occupied Entry
78+
#[stable(feature = "rust1", since = "1.0.0")]
7679
Occupied(OccupiedEntry<'a, V>),
7780
}
7881

7982
/// A vacant Entry.
80-
#[unstable(feature = "collections",
81-
reason = "precise API still under development")]
83+
84+
#[stable(feature = "rust1", since = "1.0.0")]
8285
pub struct VacantEntry<'a, V:'a> {
8386
map: &'a mut VecMap<V>,
8487
index: usize,
8588
}
8689

8790
/// An occupied Entry.
88-
#[unstable(feature = "collections",
89-
reason = "precise API still under development")]
91+
#[stable(feature = "rust1", since = "1.0.0")]
9092
pub struct OccupiedEntry<'a, V:'a> {
9193
map: &'a mut VecMap<V>,
9294
index: usize,
@@ -651,7 +653,7 @@ impl<V> VecMap<V> {
651653

652654
impl<'a, V> Entry<'a, V> {
653655
#[unstable(feature = "collections",
654-
reason = "matches collection reform v2 specification, waiting for dust to settle")]
656+
reason = "will soon be replaced by or_insert")]
655657
/// Returns a mutable reference to the entry if occupied, or the VacantEntry if vacant
656658
pub fn get(self) -> Result<&'a mut V, VacantEntry<'a, V>> {
657659
match self {

src/librustc_lint/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
#![feature(rustc_private)]
4141
#![feature(unsafe_destructor)]
4242
#![feature(staged_api)]
43-
#![feature(std_misc)]
4443
#![feature(str_char)]
4544
#![cfg_attr(test, feature(test))]
4645

src/librustc_typeck/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ This API is completely unstable and subject to change.
8080
#![feature(collections)]
8181
#![feature(core)]
8282
#![feature(int_uint)]
83-
#![feature(std_misc)]
8483
#![feature(quote)]
8584
#![feature(rustc_diagnostic_macros)]
8685
#![feature(rustc_private)]

src/libstd/collections/hash/map.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -1323,28 +1323,28 @@ pub struct Drain<'a, K: 'a, V: 'a> {
13231323
}
13241324

13251325
/// A view into a single occupied location in a HashMap.
1326-
#[unstable(feature = "std_misc",
1327-
reason = "precise API still being fleshed out")]
1326+
#[stable(feature = "rust1", since = "1.0.0")]
13281327
pub struct OccupiedEntry<'a, K: 'a, V: 'a> {
13291328
elem: FullBucket<K, V, &'a mut RawTable<K, V>>,
13301329
}
13311330

13321331
/// A view into a single empty location in a HashMap.
1333-
#[unstable(feature = "std_misc",
1334-
reason = "precise API still being fleshed out")]
1332+
#[stable(feature = "rust1", since = "1.0.0")]
13351333
pub struct VacantEntry<'a, K: 'a, V: 'a> {
13361334
hash: SafeHash,
13371335
key: K,
13381336
elem: VacantEntryState<K, V, &'a mut RawTable<K, V>>,
13391337
}
13401338

13411339
/// A view into a single location in a map, which may be vacant or occupied.
1342-
#[unstable(feature = "std_misc",
1343-
reason = "precise API still being fleshed out")]
1340+
#[stable(feature = "rust1", since = "1.0.0")]
13441341
pub enum Entry<'a, K: 'a, V: 'a> {
13451342
/// An occupied Entry.
1343+
#[stable(feature = "rust1", since = "1.0.0")]
13461344
Occupied(OccupiedEntry<'a, K, V>),
1345+
13471346
/// A vacant Entry.
1347+
#[stable(feature = "rust1", since = "1.0.0")]
13481348
Vacant(VacantEntry<'a, K, V>),
13491349
}
13501350

@@ -1465,10 +1465,10 @@ impl<'a, K, V> ExactSizeIterator for Drain<'a, K, V> {
14651465
#[inline] fn len(&self) -> usize { self.inner.len() }
14661466
}
14671467

1468-
#[unstable(feature = "std_misc",
1469-
reason = "matches collection reform v2 specification, waiting for dust to settle")]
14701468
impl<'a, K, V> Entry<'a, K, V> {
14711469
/// Returns a mutable reference to the entry if occupied, or the VacantEntry if vacant.
1470+
#[unstable(feature = "std_misc",
1471+
reason = "will soon be replaced by or_insert")]
14721472
pub fn get(self) -> Result<&'a mut V, VacantEntry<'a, K, V>> {
14731473
match self {
14741474
Occupied(entry) => Ok(entry.into_mut()),

0 commit comments

Comments
 (0)