(self: Chunk<A>)
| 1185 | * @category filtering |
| 1186 | */ |
| 1187 | export const dedupeAdjacent = <A>(self: Chunk<A>): Chunk<A> => unsafeFromArray(RA.dedupeAdjacent(self)) |
| 1188 | |
| 1189 | /** |
| 1190 | * Takes a `Chunk` of pairs and return two corresponding `Chunk`s. |
no test coverage detected
searching dependent graphs…