File tree Expand file tree Collapse file tree 1 file changed +1
-201
lines changed
Expand file tree Collapse file tree 1 file changed +1
-201
lines changed Original file line number Diff line number Diff line change @@ -25,204 +25,4 @@ export type {
2525 PipeOperation ,
2626 PipeOperationSequence ,
2727 Pipe ,
28- } from "./types" ;
29-
30- export const single = {
31- chunkwise,
32- chunkwiseOverlap,
33- compress,
34- dropWhile,
35- enumerate,
36- filter,
37- flatMap,
38- flatten,
39- groupBy,
40- keys,
41- limit,
42- map,
43- pairwise,
44- repeat,
45- skip,
46- slice,
47- sort,
48- takeWhile,
49- values,
50- chunkwiseAsync,
51- chunkwiseOverlapAsync,
52- compressAsync,
53- dropWhileAsync,
54- enumerateAsync,
55- filterAsync,
56- flatMapAsync,
57- flattenAsync,
58- groupByAsync,
59- keysAsync,
60- limitAsync,
61- mapAsync,
62- pairwiseAsync,
63- repeatAsync,
64- skipAsync,
65- sliceAsync,
66- sortAsync,
67- takeWhileAsync,
68- valuesAsync,
69- } ;
70-
71- export const infinite = {
72- count,
73- cycle,
74- cycleAsync,
75- repeat : infiniteRepeat ,
76- booleans,
77- booleansAsync,
78- } ;
79-
80- export const math = {
81- runningAverage,
82- runningDifference,
83- runningMax,
84- runningMin,
85- runningProduct,
86- runningTotal,
87- runningAverageAsync,
88- runningDifferenceAsync,
89- runningMaxAsync,
90- runningMinAsync,
91- runningProductAsync,
92- runningTotalAsync,
93- } ;
94-
95- export const multi = {
96- chain,
97- zip,
98- zipFilled,
99- zipLongest,
100- zipEqual,
101- chainAsync,
102- zipAsync,
103- zipFilledAsync,
104- zipLongestAsync,
105- zipEqualAsync,
106- } ;
107-
108- export const set = {
109- distinct,
110- intersection,
111- partialIntersection,
112- symmetricDifference,
113- union,
114- distinctAsync,
115- intersectionAsync,
116- partialIntersectionAsync,
117- symmetricDifferenceAsync,
118- unionAsync,
119- /**
120- * @deprecated Use `combinatorics.cartesianProduct()` instead.
121- */
122- cartesianProduct : cartesianProductDeprecated ,
123- /**
124- * @deprecated Use `combinatorics.cartesianProductAsync()` instead.
125- */
126- cartesianProductAsync : cartesianProductAsyncDeprecated ,
127- } ;
128-
129- export const combinatorics = {
130- cartesianProduct,
131- permutations,
132- combinations,
133- cartesianProductAsync,
134- permutationsAsync,
135- combinationsAsync,
136- } ;
137-
138- export const reduce = {
139- toAverage,
140- toCount,
141- toFirst,
142- toFirstAndLast,
143- toLast,
144- toMax,
145- toMin,
146- toMinMax,
147- toProduct,
148- toRange,
149- toSum,
150- toValue,
151- toAverageAsync,
152- toCountAsync,
153- toFirstAsync,
154- toFirstAndLastAsync,
155- toLastAsync,
156- toMaxAsync,
157- toMinAsync,
158- toMinMaxAsync,
159- toProductAsync,
160- toRangeAsync,
161- toSumAsync,
162- toValueAsync,
163- } ;
164-
165- export const summary = {
166- allMatch,
167- allUnique,
168- anyMatch,
169- exactlyN,
170- isEmpty,
171- isAsyncIterable,
172- isIterable,
173- isIterator,
174- isReversed,
175- isSorted,
176- isString,
177- noneMatch,
178- same,
179- sameCount,
180- allMatchAsync,
181- allUniqueAsync,
182- anyMatchAsync,
183- exactlyNAsync,
184- isEmptyAsync,
185- isReversedAsync,
186- isSortedAsync,
187- noneMatchAsync,
188- sameAsync,
189- sameCountAsync,
190- } ;
191-
192- export const transform = {
193- divide,
194- tee,
195- toArray,
196- toAsyncIterable,
197- toAsyncIterator,
198- toIterable,
199- toIterator,
200- toMap,
201- toSet,
202- divideAsync,
203- teeAsync,
204- toArrayAsync,
205- toMapAsync,
206- toSetAsync,
207- } ;
208-
209- export { Stream , AsyncStream } ;
210-
211- export { createPipe } ;
212-
213- export type {
214- Numeric ,
215- NumericString ,
216- AsyncFlatMapper ,
217- FlatMapper ,
218- Pair ,
219- Comparable ,
220- Comparator ,
221- RecordKey ,
222- ZipTuple ,
223- PipeOperation ,
224- PipeOperationSequence ,
225- Pipe ,
226- } ;
227-
228- export { InvalidArgumentError , LengthError } ;
28+ } from "./types" ;
You can’t perform that action at this time.
0 commit comments