(self: List<Option.Option<A>>)
| 615 | * @category combinators |
| 616 | */ |
| 617 | export const compact = <A>(self: List<Option.Option<A>>): List<A> => filterMap(self, identity) |
| 618 | |
| 619 | /** |
| 620 | * Returns the first element that satisfies the specified |
nothing calls this directly
no test coverage detected
searching dependent graphs…