-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforEach.ts
31 lines (26 loc) · 817 Bytes
/
forEach.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { TerminalStage } from '../../stages';
class ForEachCollector<IN> extends TerminalStage<IN, undefined> {
constructor(private readonly _action: (element: IN) => void) {
super();
}
override consume(element: IN): void {
this._action(element);
}
override get(): undefined {
return undefined;
}
// eslint-disable-next-line @typescript-eslint/no-empty-function
override resume(): void {}
}
/**
* Return a terminal stage that executes the given `action` on each pipeline element.
*
* @param action The action to execute on each pipeline element.
*
* @template IN The type parameter of each incoming element in the pipeline.
*
* @returns
*/
export function forEach<IN>(action: (element: IN) => void): TerminalStage<IN, undefined> {
return new ForEachCollector<IN>(action);
}