]> git.lizzy.rs Git - rust.git/blobdiff - src/libcore/iter/range.rs
core: Update stability attributes for FusedIterator
[rust.git] / src / libcore / iter / range.rs
index 7f3b227e8b733542cde7751aa3ea9f5ece0f885a..9a3fd215dcfebde7a7745b10a5a7a6fbc8040de6 100644 (file)
@@ -295,7 +295,7 @@ fn next_back(&mut self) -> Option<A> {
     }
 }
 
-#[stable(feature = "fused", since = "1.25.0")]
+#[stable(feature = "fused", since = "1.26.0")]
 impl<A: Step> FusedIterator for ops::Range<A> {}
 
 #[stable(feature = "rust1", since = "1.0.0")]
@@ -322,7 +322,7 @@ fn nth(&mut self, n: usize) -> Option<A> {
     }
 }
 
-#[stable(feature = "fused", since = "1.25.0")]
+#[stable(feature = "fused", since = "1.26.0")]
 impl<A: Step> FusedIterator for ops::RangeFrom<A> {}
 
 #[unstable(feature = "trusted_len", issue = "37572")]
@@ -463,5 +463,5 @@ fn try_rfold<B, F, R>(&mut self, init: B, mut f: F) -> R where
     }
 }
 
-#[stable(feature = "fused", since = "1.25.0")]
+#[stable(feature = "fused", since = "1.26.0")]
 impl<A: Step> FusedIterator for ops::RangeInclusive<A> {}