Skip to content

Commit 4cd2637

Browse files
committed
Update the tracking issue number of map_into_keys_values
1 parent 1cdce39 commit 4cd2637

File tree

2 files changed

+24
-24
lines changed
  • library
    • alloc/src/collections/btree
    • std/src/collections/hash

2 files changed

+24
-24
lines changed

library/alloc/src/collections/btree/map.rs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ pub struct ValuesMut<'a, K: 'a, V: 'a> {
363363
/// See its documentation for more.
364364
///
365365
/// [`into_keys`]: BTreeMap::into_keys
366-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
366+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
367367
#[derive(Debug)]
368368
pub struct IntoKeys<K, V> {
369369
inner: IntoIter<K, V>,
@@ -375,7 +375,7 @@ pub struct IntoKeys<K, V> {
375375
/// See its documentation for more.
376376
///
377377
/// [`into_values`]: BTreeMap::into_values
378-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
378+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
379379
#[derive(Debug)]
380380
pub struct IntoValues<K, V> {
381381
inner: IntoIter<K, V>,
@@ -1336,7 +1336,7 @@ impl<K: Ord, V> BTreeMap<K, V> {
13361336
/// assert_eq!(keys, [1, 2]);
13371337
/// ```
13381338
#[inline]
1339-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1339+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
13401340
pub fn into_keys(self) -> IntoKeys<K, V> {
13411341
IntoKeys { inner: self.into_iter() }
13421342
}
@@ -1359,7 +1359,7 @@ impl<K: Ord, V> BTreeMap<K, V> {
13591359
/// assert_eq!(values, ["hello", "goodbye"]);
13601360
/// ```
13611361
#[inline]
1362-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1362+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
13631363
pub fn into_values(self) -> IntoValues<K, V> {
13641364
IntoValues { inner: self.into_iter() }
13651365
}
@@ -1853,7 +1853,7 @@ impl<'a, K, V> Range<'a, K, V> {
18531853
}
18541854
}
18551855

1856-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1856+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
18571857
impl<K, V> Iterator for IntoKeys<K, V> {
18581858
type Item = K;
18591859

@@ -1878,24 +1878,24 @@ impl<K, V> Iterator for IntoKeys<K, V> {
18781878
}
18791879
}
18801880

1881-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1881+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
18821882
impl<K, V> DoubleEndedIterator for IntoKeys<K, V> {
18831883
fn next_back(&mut self) -> Option<K> {
18841884
self.inner.next_back().map(|(k, _)| k)
18851885
}
18861886
}
18871887

1888-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1888+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
18891889
impl<K, V> ExactSizeIterator for IntoKeys<K, V> {
18901890
fn len(&self) -> usize {
18911891
self.inner.len()
18921892
}
18931893
}
18941894

1895-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1895+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
18961896
impl<K, V> FusedIterator for IntoKeys<K, V> {}
18971897

1898-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1898+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
18991899
impl<K, V> Iterator for IntoValues<K, V> {
19001900
type Item = V;
19011901

@@ -1912,21 +1912,21 @@ impl<K, V> Iterator for IntoValues<K, V> {
19121912
}
19131913
}
19141914

1915-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1915+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
19161916
impl<K, V> DoubleEndedIterator for IntoValues<K, V> {
19171917
fn next_back(&mut self) -> Option<V> {
19181918
self.inner.next_back().map(|(_, v)| v)
19191919
}
19201920
}
19211921

1922-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1922+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
19231923
impl<K, V> ExactSizeIterator for IntoValues<K, V> {
19241924
fn len(&self) -> usize {
19251925
self.inner.len()
19261926
}
19271927
}
19281928

1929-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1929+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
19301930
impl<K, V> FusedIterator for IntoValues<K, V> {}
19311931

19321932
#[stable(feature = "btree_range", since = "1.17.0")]

library/std/src/collections/hash/map.rs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -891,7 +891,7 @@ where
891891
/// let vec: Vec<&str> = map.into_keys().collect();
892892
/// ```
893893
#[inline]
894-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
894+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
895895
pub fn into_keys(self) -> IntoKeys<K, V> {
896896
IntoKeys { inner: self.into_iter() }
897897
}
@@ -914,7 +914,7 @@ where
914914
/// let vec: Vec<i32> = map.into_values().collect();
915915
/// ```
916916
#[inline]
917-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
917+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
918918
pub fn into_values(self) -> IntoValues<K, V> {
919919
IntoValues { inner: self.into_iter() }
920920
}
@@ -1206,7 +1206,7 @@ pub struct ValuesMut<'a, K: 'a, V: 'a> {
12061206
/// See its documentation for more.
12071207
///
12081208
/// [`into_keys`]: HashMap::into_keys
1209-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1209+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
12101210
pub struct IntoKeys<K, V> {
12111211
inner: IntoIter<K, V>,
12121212
}
@@ -1217,7 +1217,7 @@ pub struct IntoKeys<K, V> {
12171217
/// See its documentation for more.
12181218
///
12191219
/// [`into_values`]: HashMap::into_values
1220-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1220+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
12211221
pub struct IntoValues<K, V> {
12221222
inner: IntoIter<K, V>,
12231223
}
@@ -1895,7 +1895,7 @@ where
18951895
}
18961896
}
18971897

1898-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1898+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
18991899
impl<K, V> Iterator for IntoKeys<K, V> {
19001900
type Item = K;
19011901

@@ -1908,24 +1908,24 @@ impl<K, V> Iterator for IntoKeys<K, V> {
19081908
self.inner.size_hint()
19091909
}
19101910
}
1911-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1911+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
19121912
impl<K, V> ExactSizeIterator for IntoKeys<K, V> {
19131913
#[inline]
19141914
fn len(&self) -> usize {
19151915
self.inner.len()
19161916
}
19171917
}
1918-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1918+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
19191919
impl<K, V> FusedIterator for IntoKeys<K, V> {}
19201920

1921-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1921+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
19221922
impl<K: Debug, V: Debug> fmt::Debug for IntoKeys<K, V> {
19231923
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
19241924
f.debug_list().entries(self.inner.iter().map(|(k, _)| k)).finish()
19251925
}
19261926
}
19271927

1928-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1928+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
19291929
impl<K, V> Iterator for IntoValues<K, V> {
19301930
type Item = V;
19311931

@@ -1938,17 +1938,17 @@ impl<K, V> Iterator for IntoValues<K, V> {
19381938
self.inner.size_hint()
19391939
}
19401940
}
1941-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1941+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
19421942
impl<K, V> ExactSizeIterator for IntoValues<K, V> {
19431943
#[inline]
19441944
fn len(&self) -> usize {
19451945
self.inner.len()
19461946
}
19471947
}
1948-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1948+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
19491949
impl<K, V> FusedIterator for IntoValues<K, V> {}
19501950

1951-
#[unstable(feature = "map_into_keys_values", issue = "55214")]
1951+
#[unstable(feature = "map_into_keys_values", issue = "75294")]
19521952
impl<K: Debug, V: Debug> fmt::Debug for IntoValues<K, V> {
19531953
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
19541954
f.debug_list().entries(self.inner.iter().map(|(_, v)| v)).finish()

0 commit comments

Comments
 (0)