pub fn or<I, F>(args: I) -> impl Future<Output = bool> + SendExpand description
Computes the disjunction of an iterator of Boolean futures.
All inputs are polled concurrently and true short-circuits the operation. False is returned only after every input resolves to false.
ยงPanics
Panics when the iterator contains no futures.