zipWith<U extends Object, R extends Object> method
Implementation
Option<R> zipWith<U extends Object, R extends Object>(
Option<U> other, R Function(T p1, U p2) f) {
if (other.isSome()) {
return Some(f(v, other.unwrap()));
}
return None;
}