diff options
| -rw-r--r-- | src/libcore/iter.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs index 0471a08cd78..9db3bf6ec89 100644 --- a/src/libcore/iter.rs +++ b/src/libcore/iter.rs @@ -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 /// /// ``` |
