-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoMap.ts
51 lines (43 loc) · 1.67 KB
/
toMap.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
39
40
41
42
43
44
45
46
47
48
49
50
51
import { TerminalStage } from '../../stages';
class ToMapCollector<IN, OUT> extends TerminalStage<IN, Map<any, OUT>> {
private _map = new Map<any, OUT>();
constructor(
private readonly _keyExtractor: (element: IN) => any,
private readonly _valueMapper?: (element: IN) => OUT
) {
super();
}
override consume(element: IN): void {
this._map.set(this._keyExtractor(element), this._valueMapper?.(element) || (element as unknown as OUT));
}
override get(): Map<any, OUT> {
return this._map;
}
override resume(): void {
this._map = new Map();
}
}
/**
* Return a terminal stage that puts each element into a map whose keys are extracted from `keyExtractor` argument.
*
* Optionally, each element can be transformed by providing a second argument before being stored in the resulting map.
*
* @param keyExtractor The function that instructs this collector how the key is extracted from each element.
* @param valueMapper The optional argument used to transform the pipeline elements before being stored in the resulting map.
*
* @template IN The type parameter of each incoming element in the pipeline.
* @template OUT The optional type parameter of each grouped element to transform to
*
* @returns
*/
export function toMap<IN, OUT>(
keyExtractor: (element: IN) => any,
valueMapper: (element: IN) => OUT
): TerminalStage<IN, Map<any, OUT>>;
export function toMap<IN>(keyExtractor: (element: IN) => any): TerminalStage<IN, Map<any, IN>>;
export function toMap<IN, OUT = IN>(
keyExtractor: (element: IN) => any,
valueMapper?: (element: IN) => OUT
): TerminalStage<IN, Map<any, OUT>> {
return new ToMapCollector<IN, OUT>(keyExtractor, valueMapper);
}