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,
Combine two configs and merge the results with f (Effect Config.zipWith).
f
Config.zipWith