Rollup merge of #35429 - frewsxcv:tracking-is-empty, r=apasel422

Indicate tracking issue for `exact_size_is_empty` unstability.

https://github.com/rust-lang/rust/issues/35428
This commit is contained in:
Jonathan Turner 2016-08-07 09:59:43 -07:00 committed by GitHub
commit 9151431fd4

View File

@ -548,7 +548,7 @@ pub trait ExactSizeIterator: Iterator {
/// assert_eq!(one_element.next(), None);
/// ```
#[inline]
#[unstable(feature = "exact_size_is_empty", issue = "0")]
#[unstable(feature = "exact_size_is_empty", issue = "35428")]
fn is_empty(&self) -> bool {
self.len() == 0
}