@@ -38,7 +38,7 @@ use crate::alloc::{Allocator, Global};
3838/// println!("Our BTreeSet: {:?}", set);
3939/// assert!(set.iter().eq(&["a", "b", "c", "d", "e"]));
4040/// ```
41- #[ unstable( feature = "btree_set_entry" , issue = "none " ) ]
41+ #[ unstable( feature = "btree_set_entry" , issue = "133549 " ) ]
4242pub enum Entry <
4343 ' a ,
4444 T ,
@@ -60,7 +60,7 @@ pub enum Entry<
6060 /// Entry::Occupied(_) => { }
6161 /// }
6262 /// ```
63- #[ unstable( feature = "btree_set_entry" , issue = "none " ) ]
63+ #[ unstable( feature = "btree_set_entry" , issue = "133549 " ) ]
6464 Occupied ( OccupiedEntry < ' a , T , A > ) ,
6565
6666 /// A vacant entry.
@@ -79,11 +79,11 @@ pub enum Entry<
7979 /// Entry::Vacant(_) => { }
8080 /// }
8181 /// ```
82- #[ unstable( feature = "btree_set_entry" , issue = "none " ) ]
82+ #[ unstable( feature = "btree_set_entry" , issue = "133549 " ) ]
8383 Vacant ( VacantEntry < ' a , T , A > ) ,
8484}
8585
86- #[ unstable( feature = "btree_set_entry" , issue = "none " ) ]
86+ #[ unstable( feature = "btree_set_entry" , issue = "133549 " ) ]
8787impl < T : Debug + Ord , A : Allocator + Clone > Debug for Entry < ' _ , T , A > {
8888 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
8989 match * self {
@@ -129,7 +129,7 @@ impl<T: Debug + Ord, A: Allocator + Clone> Debug for Entry<'_, T, A> {
129129/// assert_eq!(set.get(&"c"), None);
130130/// assert_eq!(set.len(), 2);
131131/// ```
132- #[ unstable( feature = "btree_set_entry" , issue = "none " ) ]
132+ #[ unstable( feature = "btree_set_entry" , issue = "133549 " ) ]
133133pub struct OccupiedEntry <
134134 ' a ,
135135 T ,
@@ -138,7 +138,7 @@ pub struct OccupiedEntry<
138138 pub ( super ) inner : map:: OccupiedEntry < ' a , T , SetValZST , A > ,
139139}
140140
141- #[ unstable( feature = "btree_set_entry" , issue = "none " ) ]
141+ #[ unstable( feature = "btree_set_entry" , issue = "133549 " ) ]
142142impl < T : Debug + Ord , A : Allocator + Clone > Debug for OccupiedEntry < ' _ , T , A > {
143143 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
144144 f. debug_struct ( "OccupiedEntry" ) . field ( "value" , self . get ( ) ) . finish ( )
@@ -171,7 +171,7 @@ impl<T: Debug + Ord, A: Allocator + Clone> Debug for OccupiedEntry<'_, T, A> {
171171/// }
172172/// assert!(set.contains("b") && set.len() == 2);
173173/// ```
174- #[ unstable( feature = "btree_set_entry" , issue = "none " ) ]
174+ #[ unstable( feature = "btree_set_entry" , issue = "133549 " ) ]
175175pub struct VacantEntry <
176176 ' a ,
177177 T ,
@@ -180,7 +180,7 @@ pub struct VacantEntry<
180180 pub ( super ) inner : map:: VacantEntry < ' a , T , SetValZST , A > ,
181181}
182182
183- #[ unstable( feature = "btree_set_entry" , issue = "none " ) ]
183+ #[ unstable( feature = "btree_set_entry" , issue = "133549 " ) ]
184184impl < T : Debug + Ord , A : Allocator + Clone > Debug for VacantEntry < ' _ , T , A > {
185185 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
186186 f. debug_tuple ( "VacantEntry" ) . field ( self . get ( ) ) . finish ( )
@@ -203,7 +203,7 @@ impl<'a, T: Ord, A: Allocator + Clone> Entry<'a, T, A> {
203203 /// assert_eq!(entry.get(), &"horseyland");
204204 /// ```
205205 #[ inline]
206- #[ unstable( feature = "btree_set_entry" , issue = "none " ) ]
206+ #[ unstable( feature = "btree_set_entry" , issue = "133549 " ) ]
207207 pub fn insert ( self ) -> OccupiedEntry < ' a , T , A > {
208208 match self {
209209 Occupied ( entry) => entry,
@@ -232,7 +232,7 @@ impl<'a, T: Ord, A: Allocator + Clone> Entry<'a, T, A> {
232232 /// assert_eq!(set.len(), 1);
233233 /// ```
234234 #[ inline]
235- #[ unstable( feature = "btree_set_entry" , issue = "none " ) ]
235+ #[ unstable( feature = "btree_set_entry" , issue = "133549 " ) ]
236236 pub fn or_insert ( self ) {
237237 if let Vacant ( entry) = self {
238238 entry. insert ( ) ;
@@ -257,7 +257,7 @@ impl<'a, T: Ord, A: Allocator + Clone> Entry<'a, T, A> {
257257 /// assert_eq!(set.entry("horseland").get(), &"horseland");
258258 /// ```
259259 #[ inline]
260- #[ unstable( feature = "btree_set_entry" , issue = "none " ) ]
260+ #[ unstable( feature = "btree_set_entry" , issue = "133549 " ) ]
261261 pub fn get ( & self ) -> & T {
262262 match * self {
263263 Occupied ( ref entry) => entry. get ( ) ,
@@ -285,7 +285,7 @@ impl<'a, T: Ord, A: Allocator + Clone> OccupiedEntry<'a, T, A> {
285285 /// }
286286 /// ```
287287 #[ inline]
288- #[ unstable( feature = "btree_set_entry" , issue = "none " ) ]
288+ #[ unstable( feature = "btree_set_entry" , issue = "133549 " ) ]
289289 pub fn get ( & self ) -> & T {
290290 self . inner . key ( )
291291 }
@@ -310,7 +310,7 @@ impl<'a, T: Ord, A: Allocator + Clone> OccupiedEntry<'a, T, A> {
310310 /// assert_eq!(set.contains("poneyland"), false);
311311 /// ```
312312 #[ inline]
313- #[ unstable( feature = "btree_set_entry" , issue = "none " ) ]
313+ #[ unstable( feature = "btree_set_entry" , issue = "133549 " ) ]
314314 pub fn remove ( self ) -> T {
315315 self . inner . remove_entry ( ) . 0
316316 }
@@ -331,7 +331,7 @@ impl<'a, T: Ord, A: Allocator + Clone> VacantEntry<'a, T, A> {
331331 /// assert_eq!(set.entry("poneyland").get(), &"poneyland");
332332 /// ```
333333 #[ inline]
334- #[ unstable( feature = "btree_set_entry" , issue = "none " ) ]
334+ #[ unstable( feature = "btree_set_entry" , issue = "133549 " ) ]
335335 pub fn get ( & self ) -> & T {
336336 self . inner . key ( )
337337 }
@@ -353,7 +353,7 @@ impl<'a, T: Ord, A: Allocator + Clone> VacantEntry<'a, T, A> {
353353 /// }
354354 /// ```
355355 #[ inline]
356- #[ unstable( feature = "btree_set_entry" , issue = "none " ) ]
356+ #[ unstable( feature = "btree_set_entry" , issue = "133549 " ) ]
357357 pub fn into_value ( self ) -> T {
358358 self . inner . into_key ( )
359359 }
@@ -376,7 +376,7 @@ impl<'a, T: Ord, A: Allocator + Clone> VacantEntry<'a, T, A> {
376376 /// assert!(set.contains("poneyland"));
377377 /// ```
378378 #[ inline]
379- #[ unstable( feature = "btree_set_entry" , issue = "none " ) ]
379+ #[ unstable( feature = "btree_set_entry" , issue = "133549 " ) ]
380380 pub fn insert ( self ) {
381381 self . inner . insert ( SetValZST ) ;
382382 }
0 commit comments