( f: (...a: A) => Option.Option<B> )
| 2903 | * @since 2.0.0 |
| 2904 | */ |
| 2905 | export const liftOption = <A extends Array<unknown>, B>( |
| 2906 | f: (...a: A) => Option.Option<B> |
| 2907 | ) => |
| 2908 | (...a: A): Array<B> => fromOption(f(...a)) |
| 2909 | |
| 2910 | /** |
| 2911 | * @category conversions |
nothing calls this directly
no test coverage detected
searching dependent graphs…