(self: Chunk<A>)
| 2196 | * @since 2.0.0 |
| 2197 | */ |
| 2198 | export const dedupe = <A>(self: Chunk<A>): Chunk<A> => fromArrayUnsafe(RA.dedupe(toReadonlyArray(self))) |
| 2199 | |
| 2200 | /** |
| 2201 | * Deduplicates adjacent elements that are identical. |
nothing calls this directly
no test coverage detected