Skip to content

Commit 3545036

Browse files
Add "every" as a doc alias for "all".
1 parent e6a0f3c commit 3545036

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

library/core/src/iter/traits/iterator.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2196,6 +2196,7 @@ pub trait Iterator {
21962196
/// // we can still use `iter`, as there are more elements.
21972197
/// assert_eq!(iter.next(), Some(&3));
21982198
/// ```
2199+
#[doc(alias = "every")]
21992200
#[inline]
22002201
#[stable(feature = "rust1", since = "1.0.0")]
22012202
fn all<F>(&mut self, f: F) -> bool

0 commit comments

Comments
 (0)