@@ -362,7 +362,7 @@ impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for Iter<'_, K, V> {
362362 }
363363}
364364
365- #[ stable( feature = "default_iters" , since = "CURRENT_RUSTC_VERSION " ) ]
365+ #[ stable( feature = "default_iters" , since = "1.70.0 " ) ]
366366impl < ' a , K : ' a , V : ' a > Default for Iter < ' a , K , V > {
367367 /// Creates an empty `btree_map::Iter`.
368368 ///
@@ -400,7 +400,7 @@ impl<K: fmt::Debug, V: fmt::Debug> fmt::Debug for IterMut<'_, K, V> {
400400 }
401401}
402402
403- #[ stable( feature = "default_iters" , since = "CURRENT_RUSTC_VERSION " ) ]
403+ #[ stable( feature = "default_iters" , since = "1.70.0 " ) ]
404404impl < ' a , K : ' a , V : ' a > Default for IterMut < ' a , K , V > {
405405 /// Creates an empty `btree_map::IterMut`.
406406 ///
@@ -448,7 +448,7 @@ impl<K: Debug, V: Debug, A: Allocator + Clone> Debug for IntoIter<K, V, A> {
448448 }
449449}
450450
451- #[ stable( feature = "default_iters" , since = "CURRENT_RUSTC_VERSION " ) ]
451+ #[ stable( feature = "default_iters" , since = "1.70.0 " ) ]
452452impl < K , V , A > Default for IntoIter < K , V , A >
453453where
454454 A : Allocator + Default + Clone ,
@@ -1812,7 +1812,7 @@ impl<K, V> Clone for Keys<'_, K, V> {
18121812 }
18131813}
18141814
1815- #[ stable( feature = "default_iters" , since = "CURRENT_RUSTC_VERSION " ) ]
1815+ #[ stable( feature = "default_iters" , since = "1.70.0 " ) ]
18161816impl < K , V > Default for Keys < ' _ , K , V > {
18171817 /// Creates an empty `btree_map::Keys`.
18181818 ///
@@ -1867,7 +1867,7 @@ impl<K, V> Clone for Values<'_, K, V> {
18671867 }
18681868}
18691869
1870- #[ stable( feature = "default_iters" , since = "CURRENT_RUSTC_VERSION " ) ]
1870+ #[ stable( feature = "default_iters" , since = "1.70.0 " ) ]
18711871impl < K , V > Default for Values < ' _ , K , V > {
18721872 /// Creates an empty `btree_map::Values`.
18731873 ///
@@ -2017,7 +2017,7 @@ impl<'a, K, V> Iterator for Range<'a, K, V> {
20172017 }
20182018}
20192019
2020- #[ stable( feature = "default_iters" , since = "CURRENT_RUSTC_VERSION " ) ]
2020+ #[ stable( feature = "default_iters" , since = "1.70.0 " ) ]
20212021impl < K , V > Default for Range < ' _ , K , V > {
20222022 /// Creates an empty `btree_map::Range`.
20232023 ///
@@ -2107,7 +2107,7 @@ impl<K, V, A: Allocator + Clone> ExactSizeIterator for IntoKeys<K, V, A> {
21072107#[ stable( feature = "map_into_keys_values" , since = "1.54.0" ) ]
21082108impl < K , V , A : Allocator + Clone > FusedIterator for IntoKeys < K , V , A > { }
21092109
2110- #[ stable( feature = "default_iters" , since = "CURRENT_RUSTC_VERSION " ) ]
2110+ #[ stable( feature = "default_iters" , since = "1.70.0 " ) ]
21112111impl < K , V , A > Default for IntoKeys < K , V , A >
21122112where
21132113 A : Allocator + Default + Clone ,
@@ -2158,7 +2158,7 @@ impl<K, V, A: Allocator + Clone> ExactSizeIterator for IntoValues<K, V, A> {
21582158#[ stable( feature = "map_into_keys_values" , since = "1.54.0" ) ]
21592159impl < K , V , A : Allocator + Clone > FusedIterator for IntoValues < K , V , A > { }
21602160
2161- #[ stable( feature = "default_iters" , since = "CURRENT_RUSTC_VERSION " ) ]
2161+ #[ stable( feature = "default_iters" , since = "1.70.0 " ) ]
21622162impl < K , V , A > Default for IntoValues < K , V , A >
21632163where
21642164 A : Allocator + Default + Clone ,
0 commit comments