(self: Chunk<A>)
| 1177 | * @category elements |
| 1178 | */ |
| 1179 | export const dedupe = <A>(self: Chunk<A>): Chunk<A> => unsafeFromArray(RA.dedupe(toReadonlyArray(self))) |
| 1180 | |
| 1181 | /** |
| 1182 | * Deduplicates adjacent elements that are identical. |
nothing calls this directly
no test coverage detected