Revert "Add "every" as a doc alias for "all"."

This reverts commit 35450365ac.
This commit is contained in:
Josh Stone 2021-07-07 13:13:26 -07:00
parent c5e344f774
commit ace3989d55

View File

@ -2254,7 +2254,6 @@ pub trait Iterator {
/// // we can still use `iter`, as there are more elements.
/// assert_eq!(iter.next(), Some(&3));
/// ```
#[doc(alias = "every")]
#[inline]
#[stable(feature = "rust1", since = "1.0.0")]
fn all<F>(&mut self, f: F) -> bool