@@ -1456,7 +1456,7 @@ impl<K, V, A: Allocator + Clone> BTreeMap<K, V, A> {
1456
1456
/// assert_eq!(low.keys().copied().collect::<Vec<_>>(), [0, 1, 2, 3]);
1457
1457
/// assert_eq!(high.keys().copied().collect::<Vec<_>>(), [4, 5, 6, 7]);
1458
1458
/// ```
1459
- #[ stable( feature = "btree_extract_if" , since = "CURRENT_RUSTC_VERSION " ) ]
1459
+ #[ stable( feature = "btree_extract_if" , since = "1.91.0 " ) ]
1460
1460
pub fn extract_if < F , R > ( & mut self , range : R , pred : F ) -> ExtractIf < ' _ , K , V , R , F , A >
1461
1461
where
1462
1462
K : Ord ,
@@ -1943,7 +1943,7 @@ impl<K, V> Default for Values<'_, K, V> {
1943
1943
}
1944
1944
1945
1945
/// An iterator produced by calling `extract_if` on BTreeMap.
1946
- #[ stable( feature = "btree_extract_if" , since = "CURRENT_RUSTC_VERSION " ) ]
1946
+ #[ stable( feature = "btree_extract_if" , since = "1.91.0 " ) ]
1947
1947
#[ must_use = "iterators are lazy and do nothing unless consumed" ]
1948
1948
pub struct ExtractIf <
1949
1949
' a ,
@@ -1976,7 +1976,7 @@ pub(super) struct ExtractIfInner<'a, K, V, R> {
1976
1976
range : R ,
1977
1977
}
1978
1978
1979
- #[ stable( feature = "btree_extract_if" , since = "CURRENT_RUSTC_VERSION " ) ]
1979
+ #[ stable( feature = "btree_extract_if" , since = "1.91.0 " ) ]
1980
1980
impl < K , V , R , F , A > fmt:: Debug for ExtractIf < ' _ , K , V , R , F , A >
1981
1981
where
1982
1982
K : fmt:: Debug ,
@@ -1988,7 +1988,7 @@ where
1988
1988
}
1989
1989
}
1990
1990
1991
- #[ stable( feature = "btree_extract_if" , since = "CURRENT_RUSTC_VERSION " ) ]
1991
+ #[ stable( feature = "btree_extract_if" , since = "1.91.0 " ) ]
1992
1992
impl < K , V , R , F , A : Allocator + Clone > Iterator for ExtractIf < ' _ , K , V , R , F , A >
1993
1993
where
1994
1994
K : PartialOrd ,
@@ -2062,7 +2062,7 @@ impl<'a, K, V, R> ExtractIfInner<'a, K, V, R> {
2062
2062
}
2063
2063
}
2064
2064
2065
- #[ stable( feature = "btree_extract_if" , since = "CURRENT_RUSTC_VERSION " ) ]
2065
+ #[ stable( feature = "btree_extract_if" , since = "1.91.0 " ) ]
2066
2066
impl < K , V , R , F > FusedIterator for ExtractIf < ' _ , K , V , R , F >
2067
2067
where
2068
2068
K : PartialOrd ,
0 commit comments