Skip to main content

zip_with

Function zip_with 

Source
pub fn zip_with<A, B, C>(
    a: Config<A>,
    b: Config<B>,
    f: impl Fn(A, B) -> C + Send + Sync + 'static,
) -> Config<C>
where A: Send + Sync + 'static, B: Send + Sync + 'static, C: Send + Sync + 'static,
Expand description

Combine two configs and merge the results with f (Effect Config.zipWith).