@thi.ng/transducers
Version:
Collection of ~170 lightweight, composable transducers, reducers, generators, iterators for functional data transformations
6 lines • 381 B
TypeScript
import type { Predicate } from "@thi.ng/api";
import type { Transducer } from "./api.js";
export declare function dropWhile<T>(pred?: Predicate<T>): Transducer<T, T>;
export declare function dropWhile<T>(src: Iterable<T>): IterableIterator<T>;
export declare function dropWhile<T>(pred: Predicate<T>, src: Iterable<T>): IterableIterator<T>;
//# sourceMappingURL=drop-while.d.ts.map