(self: Option<A>)
| 1543 | * @since 2.0.0 |
| 1544 | */ |
| 1545 | export const toArray = <A>(self: Option<A>): Array<A> => isNone(self) ? [] : [self.value] |
| 1546 | |
| 1547 | /** |
| 1548 | * Splits an `Option` into two `Option`s based on the result of a mapping |
nothing calls this directly
no test coverage detected
searching dependent graphs…