zipWith<U, R> abstract method

Option<R> zipWith<U, R>(
  1. Option<U> other,
  2. R f(
    1. T,
    2. U
    )
)

Zips self and another Option with function f

Implementation

Option<R> zipWith<U, R>(Option<U> other, R Function(T, U) f);