UNPKG

@thi.ng/transducers

Version:

Collection of ~170 lightweight, composable transducers, reducers, generators, iterators for functional data transformations

7 lines 246 B
import type { Reducer } from "./api.js"; /** * Reducer. Like {@link push}, but for ES6 Sets. */ export declare function conj<T>(): Reducer<T, Set<T>>; export declare function conj<T>(src: Iterable<T>): Set<T>; //# sourceMappingURL=conj.d.ts.map