Indicate tracking issue for exact_size_is_empty unstability.

This commit is contained in:
Corey Farwell 2016-08-06 15:16:32 -04:00
parent 444ff9fbfb
commit 95cce86fa9

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
}