pub trait FlatMapFn<A, I, T, U, R>: Send + 'staticwhere
R: IntoIterator<Item = (I, U)>,{
// Required method
fn execute(&self, scope: &Scope<I>, value: T) -> Result<R>;
}Expand description
Flat map function.
pub trait FlatMapFn<A, I, T, U, R>: Send + 'staticwhere
R: IntoIterator<Item = (I, U)>,{
// Required method
fn execute(&self, scope: &Scope<I>, value: T) -> Result<R>;
}Flat map function.