1
Fork 0

core: Update stability attributes for FusedIterator

This commit is contained in:
Ulrik Sverdrup 2018-03-03 14:15:28 +01:00
parent bc651cac8d
commit c7c23fe948
24 changed files with 108 additions and 111 deletions

View file

@ -2389,7 +2389,7 @@ impl<T> ExactSizeIterator for IntoIter<T> {
}
}
#[stable(feature = "fused", since = "1.25.0")]
#[stable(feature = "fused", since = "1.26.0")]
impl<T> FusedIterator for IntoIter<T> {}
#[unstable(feature = "trusted_len", issue = "37572")]
@ -2495,7 +2495,7 @@ impl<'a, T> ExactSizeIterator for Drain<'a, T> {
}
}
#[stable(feature = "fused", since = "1.25.0")]
#[stable(feature = "fused", since = "1.26.0")]
impl<'a, T> FusedIterator for Drain<'a, T> {}
/// A place for insertion at the back of a `Vec`.