Skip to content

Commit

Permalink
Indicate tracking issue for exact_size_is_empty unstability.
Browse files Browse the repository at this point in the history
  • Loading branch information
frewsxcv committed Aug 6, 2016
1 parent 444ff9f commit 95cce86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/iter/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 95cce86

Please sign in to comment.