zipWith<U, R> method
Zips self and another Option with function f
Implementation
@override
Option<R> zipWith<U, R>(Option<U> other, R Function(T p1, U p2) f) {
if (other.isSome()) {
return Some(f(v, other.unwrap()));
}
return None;
}