(self: Chunk<Option<A>>)
| 717 | * @category filtering |
| 718 | */ |
| 719 | export const compact = <A>(self: Chunk<Option<A>>): Chunk<A> => filterMap(self, identity) |
| 720 | |
| 721 | /** |
| 722 | * Applies a function to each element in a chunk and returns a new chunk containing the concatenated mapped elements. |
nothing calls this directly
no test coverage detected