Trait macro_tools::iter::IterExt
source · pub trait IterExt: Iterator {
// Required method
fn map_result<F, RE, El>(self, f: F) -> Result<Vec<El>, RE>
where Self: Sized + Clone,
F: FnMut(Self::Item) -> Result<El, RE>,
RE: Debug;
}Expand description
Extension of iterator.