Skip to content

Commit 5e2c9d3

Browse files
committed
Add a hash_set_entry tracking issue
1 parent 5f93834 commit 5e2c9d3

File tree

1 file changed

+2
-2
lines changed
  • src/libstd/collections/hash

1 file changed

+2
-2
lines changed

src/libstd/collections/hash/set.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ impl<T, S> HashSet<T, S>
635635
/// assert_eq!(set.len(), 4); // 100 was inserted
636636
/// ```
637637
#[inline]
638-
#[unstable(feature = "hash_set_entry", issue = "0")]
638+
#[unstable(feature = "hash_set_entry", issue = "60896")]
639639
pub fn get_or_insert(&mut self, value: T) -> &T {
640640
self.map.raw_entry_mut().from_key(&value).or_insert(value, ()).0
641641
}
@@ -661,7 +661,7 @@ impl<T, S> HashSet<T, S>
661661
/// assert_eq!(set.len(), 4); // a new "fish" was inserted
662662
/// ```
663663
#[inline]
664-
#[unstable(feature = "hash_set_entry", issue = "0")]
664+
#[unstable(feature = "hash_set_entry", issue = "60896")]
665665
pub fn get_or_insert_with<Q: ?Sized, F>(&mut self, value: &Q, f: F) -> &T
666666
where T: Borrow<Q>,
667667
Q: Hash + Eq,

0 commit comments

Comments
 (0)