(f: (a: A, b: B) => C)
| 1766 | * @since 2.0.0 |
| 1767 | */ |
| 1768 | export const lift2 = <A, B, C>(f: (a: A, b: B) => C): { |
| 1769 | (that: Option<B>): (self: Option<A>) => Option<C> |
| 1770 | (self: Option<A>, that: Option<B>): Option<C> |
| 1771 | } => dual(2, (self: Option<A>, that: Option<B>): Option<C> => zipWith(self, that, f)) |
| 1772 | |
| 1773 | /** |
| 1774 | * Lifts a `Predicate` or `Refinement` into the `Option` context, returning a |
nothing calls this directly
no test coverage detected
searching dependent graphs…