Skip to content

Commit

Permalink
Rollup merge of rust-lang#35429 - frewsxcv:tracking-is-empty, r=apase…
Browse files Browse the repository at this point in the history
…l422

Indicate tracking issue for `exact_size_is_empty` unstability.

rust-lang#35428
  • Loading branch information
Jonathan Turner committed Aug 7, 2016
2 parents abbfb1f + 95cce86 commit 26f137b
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 26f137b

Please sign in to comment.