mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-03 18:43:38 +00:00
Update the tracking issue number of map_into_keys_values
This commit is contained in:
parent
1cdce3919f
commit
4cd2637e2b
@ -363,7 +363,7 @@ pub struct ValuesMut<'a, K: 'a, V: 'a> {
|
||||
/// See its documentation for more.
|
||||
///
|
||||
/// [`into_keys`]: BTreeMap::into_keys
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
#[derive(Debug)]
|
||||
pub struct IntoKeys<K, V> {
|
||||
inner: IntoIter<K, V>,
|
||||
@ -375,7 +375,7 @@ pub struct IntoKeys<K, V> {
|
||||
/// See its documentation for more.
|
||||
///
|
||||
/// [`into_values`]: BTreeMap::into_values
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
#[derive(Debug)]
|
||||
pub struct IntoValues<K, V> {
|
||||
inner: IntoIter<K, V>,
|
||||
@ -1336,7 +1336,7 @@ impl<K: Ord, V> BTreeMap<K, V> {
|
||||
/// assert_eq!(keys, [1, 2]);
|
||||
/// ```
|
||||
#[inline]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
pub fn into_keys(self) -> IntoKeys<K, V> {
|
||||
IntoKeys { inner: self.into_iter() }
|
||||
}
|
||||
@ -1359,7 +1359,7 @@ impl<K: Ord, V> BTreeMap<K, V> {
|
||||
/// assert_eq!(values, ["hello", "goodbye"]);
|
||||
/// ```
|
||||
#[inline]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
pub fn into_values(self) -> IntoValues<K, V> {
|
||||
IntoValues { inner: self.into_iter() }
|
||||
}
|
||||
@ -1853,7 +1853,7 @@ impl<'a, K, V> Range<'a, K, V> {
|
||||
}
|
||||
}
|
||||
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
impl<K, V> Iterator for IntoKeys<K, V> {
|
||||
type Item = K;
|
||||
|
||||
@ -1878,24 +1878,24 @@ impl<K, V> Iterator for IntoKeys<K, V> {
|
||||
}
|
||||
}
|
||||
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
impl<K, V> DoubleEndedIterator for IntoKeys<K, V> {
|
||||
fn next_back(&mut self) -> Option<K> {
|
||||
self.inner.next_back().map(|(k, _)| k)
|
||||
}
|
||||
}
|
||||
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
impl<K, V> ExactSizeIterator for IntoKeys<K, V> {
|
||||
fn len(&self) -> usize {
|
||||
self.inner.len()
|
||||
}
|
||||
}
|
||||
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
impl<K, V> FusedIterator for IntoKeys<K, V> {}
|
||||
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
impl<K, V> Iterator for IntoValues<K, V> {
|
||||
type Item = V;
|
||||
|
||||
@ -1912,21 +1912,21 @@ impl<K, V> Iterator for IntoValues<K, V> {
|
||||
}
|
||||
}
|
||||
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
impl<K, V> DoubleEndedIterator for IntoValues<K, V> {
|
||||
fn next_back(&mut self) -> Option<V> {
|
||||
self.inner.next_back().map(|(_, v)| v)
|
||||
}
|
||||
}
|
||||
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
impl<K, V> ExactSizeIterator for IntoValues<K, V> {
|
||||
fn len(&self) -> usize {
|
||||
self.inner.len()
|
||||
}
|
||||
}
|
||||
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
impl<K, V> FusedIterator for IntoValues<K, V> {}
|
||||
|
||||
#[stable(feature = "btree_range", since = "1.17.0")]
|
||||
|
@ -891,7 +891,7 @@ where
|
||||
/// let vec: Vec<&str> = map.into_keys().collect();
|
||||
/// ```
|
||||
#[inline]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
pub fn into_keys(self) -> IntoKeys<K, V> {
|
||||
IntoKeys { inner: self.into_iter() }
|
||||
}
|
||||
@ -914,7 +914,7 @@ where
|
||||
/// let vec: Vec<i32> = map.into_values().collect();
|
||||
/// ```
|
||||
#[inline]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
pub fn into_values(self) -> IntoValues<K, V> {
|
||||
IntoValues { inner: self.into_iter() }
|
||||
}
|
||||
@ -1206,7 +1206,7 @@ pub struct ValuesMut<'a, K: 'a, V: 'a> {
|
||||
/// See its documentation for more.
|
||||
///
|
||||
/// [`into_keys`]: HashMap::into_keys
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
pub struct IntoKeys<K, V> {
|
||||
inner: IntoIter<K, V>,
|
||||
}
|
||||
@ -1217,7 +1217,7 @@ pub struct IntoKeys<K, V> {
|
||||
/// See its documentation for more.
|
||||
///
|
||||
/// [`into_values`]: HashMap::into_values
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
pub struct IntoValues<K, V> {
|
||||
inner: IntoIter<K, V>,
|
||||
}
|
||||
@ -1895,7 +1895,7 @@ where
|
||||
}
|
||||
}
|
||||
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
impl<K, V> Iterator for IntoKeys<K, V> {
|
||||
type Item = K;
|
||||
|
||||
@ -1908,24 +1908,24 @@ impl<K, V> Iterator for IntoKeys<K, V> {
|
||||
self.inner.size_hint()
|
||||
}
|
||||
}
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
impl<K, V> ExactSizeIterator for IntoKeys<K, V> {
|
||||
#[inline]
|
||||
fn len(&self) -> usize {
|
||||
self.inner.len()
|
||||
}
|
||||
}
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
impl<K, V> FusedIterator for IntoKeys<K, V> {}
|
||||
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
impl<K: Debug, V: Debug> fmt::Debug for IntoKeys<K, V> {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
f.debug_list().entries(self.inner.iter().map(|(k, _)| k)).finish()
|
||||
}
|
||||
}
|
||||
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
impl<K, V> Iterator for IntoValues<K, V> {
|
||||
type Item = V;
|
||||
|
||||
@ -1938,17 +1938,17 @@ impl<K, V> Iterator for IntoValues<K, V> {
|
||||
self.inner.size_hint()
|
||||
}
|
||||
}
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
impl<K, V> ExactSizeIterator for IntoValues<K, V> {
|
||||
#[inline]
|
||||
fn len(&self) -> usize {
|
||||
self.inner.len()
|
||||
}
|
||||
}
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
impl<K, V> FusedIterator for IntoValues<K, V> {}
|
||||
|
||||
#[unstable(feature = "map_into_keys_values", issue = "55214")]
|
||||
#[unstable(feature = "map_into_keys_values", issue = "75294")]
|
||||
impl<K: Debug, V: Debug> fmt::Debug for IntoValues<K, V> {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
f.debug_list().entries(self.inner.iter().map(|(_, v)| v)).finish()
|
||||
|
Loading…
Reference in New Issue
Block a user