-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbenchmark-fp.ts
220 lines (199 loc) · 4.81 KB
/
benchmark-fp.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
import { performance } from 'perf_hooks';
import {
CanApply,
Effect,
Ok,
Option,
compose,
composeTransducers,
curry,
filterTransducer,
mapTransducer,
partial,
partialRight,
pipe,
takeTransducer,
uncurry,
} from './src/index.ts';
type BenchmarkResult = {
function: string;
operation: string;
time: number;
};
function benchmark<T>(fn: () => T, label: string, operation: string): BenchmarkResult {
const start = performance.now();
fn();
const time = performance.now() - start;
return { function: label, operation, time };
}
const benchmarks: BenchmarkResult[] = [];
// ** Test Dataset: 100,000 Numbers **
const numbers = Array.from({ length: 100_000 }, (_, i) => i + 1);
const double = (x: number) => x * 2;
const isEven = (x: number) => x % 2 === 0;
const takeLimit = 5000;
// ** Traditional Array Transformation (map -> filter -> slice) **
benchmarks.push(
benchmark(
() => {
numbers
.filter(isEven) // Keep even numbers
.map(double) // Double them
.slice(0, takeLimit); // Take first `takeLimit` results
},
'Traditional Array Transformation',
'map().filter().slice()',
),
);
// ** Transducer-Based Transformation (reduce) **
const transducer = composeTransducers(
filterTransducer(isEven), // Filter evens
mapTransducer(double), // Double values
takeTransducer(takeLimit), // Take first `takeLimit`
);
benchmarks.push(
benchmark(
() => {
numbers.reduce(
transducer((acc, val) => [...acc, val]),
[],
);
},
'Transducer Approach',
'reduce() with transducers',
),
);
benchmarks.push(
benchmark(
() => {
const result: number[] = [];
numbers.reduce(
transducer((acc, val) => {
acc.push(val); // Mutate instead of spreading
return acc;
}),
result,
);
},
'Transducer Optimized',
'reduce() with transducers (optimized)',
),
);
// ** Display Benchmark Results **
console.table(benchmarks);
// **Existing Function Composition Benchmarks**
benchmarks.push(
benchmark(
() => {
const add = (a: number) => a + 2;
const multiply = (a: number) => a * 3;
const composed = compose(multiply, add);
composed(5);
},
'compose',
'Function composition',
),
);
benchmarks.push(
benchmark(
() => {
const add = (a: number) => a + 2;
const multiply = (a: number) => a * 3;
const piped = pipe(add, multiply);
piped(5);
},
'pipe',
'Function piping',
),
);
// **Currying & Partial Application**
benchmarks.push(
benchmark(
() => {
const add = (a: number, b: number) => a + b;
const curriedAdd = curry(add);
curriedAdd(3)(5);
},
'curry',
'Currying',
),
);
benchmarks.push(
benchmark(
() => {
const subtract = (a: number, b: number) => a - b;
const partiallyApplied = partial(subtract, 10);
partiallyApplied(3);
},
'partial',
'Partial Application',
),
);
benchmarks.push(
benchmark(
() => {
const subtract = (a: number, b: number) => a - b;
const partiallyAppliedRight = partialRight(subtract, 3);
partiallyAppliedRight(10);
},
'partialRight',
'Partial Right Application',
),
);
benchmarks.push(
benchmark(
() => {
const add = (a: number, b: number) => a + b;
const curriedAdd = curry(add);
const uncurriedAdd = uncurry(curriedAdd);
uncurriedAdd(3, 5);
},
'uncurry',
'Uncurrying',
),
);
// **Functors: CanApply**
benchmarks.push(
benchmark(
() => {
CanApply(5)
.map((x) => x * 2)
.map((x) => x + 10)
.getValue();
},
'CanApply',
'Functor Mapping',
),
);
// **Monads: Option, Result, and Effect**
benchmarks.push(
benchmark(
() => {
Option.from(5)
.map((x) => x * 2)
.getOrElse(0);
},
'Option',
'Option Mapping',
),
);
benchmarks.push(
benchmark(
() => {
new Ok(5).map((x) => x * 2).unwrapOr(0);
},
'Result',
'Result Mapping',
),
);
benchmarks.push(
benchmark(
() => {
Effect(() => 5 * 2).run();
},
'Effect',
'Effect Execution',
),
);
// **Display Benchmark Results**
console.table(benchmarks);