-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnoneMatch.ts
38 lines (32 loc) · 1.01 KB
/
noneMatch.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
32
33
34
35
36
37
38
import { PipelineEvent } from '../../PipelineEvent';
import { TerminalStage } from '../../stages';
class NoneMatchCollector<IN> extends TerminalStage<IN, boolean> {
private _noneMatch = true;
constructor(private readonly _predicate: (element: IN) => boolean) {
super();
}
override consume(element: IN): void {
this._noneMatch = !this._predicate(element);
if (!this._noneMatch) {
this._broadcast(PipelineEvent.TERMINATE_PIPELINE);
}
}
override get(): boolean {
return this._noneMatch;
}
override resume(): void {
this._noneMatch = true;
}
}
/**
* Return a terminal stage that checks whether no elements in this pipeline match the provided predicate.
*
* @param predicate The predicate used to test if no elements of the pipeline match.
*
* @template IN The type parameter of each incoming element in the pipeline.
*
* @returns
*/
export function noneMatch<IN>(predicate: (element: IN) => boolean): TerminalStage<IN, boolean> {
return new NoneMatchCollector<IN>(predicate);
}