Iterator::all() - document short-circuiting property parallel to any()

This commit is contained in:
Georg Brandl 2015-08-15 11:49:33 +02:00
parent e859498d1c
commit 56f3282f31

View file

@ -616,6 +616,8 @@ pub trait Iterator {
/// Tests whether the predicate holds true for all elements in the iterator.
///
/// Does not consume the iterator past the first non-matching element.
///
/// # Examples
///
/// ```