pub trait IterExtwhere
Self: Iterator + Sealed,{
// Required methods
fn all_true(&mut self) -> bool
where Self: Sized,
<Self as Iterator>::Item: ToRef<bool>;
fn any_true(&mut self) -> bool
where Self: Sized,
<Self as Iterator>::Item: ToRef<bool>;
}Expand description
Extension trait for iterators over floating-point numbers.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".