-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCollectionIterable.cs
More file actions
464 lines (353 loc) · 15.6 KB
/
CollectionIterable.cs
File metadata and controls
464 lines (353 loc) · 15.6 KB
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
namespace CollectionIterable
{
using System;
using System.Collections.Generic;
using CollectionIterableUtils;
public enum SortDirection
{
Ascending,
Descending
}
public static class CollectionIterable
{
#region Concat
internal static IEnumerable<T> ConcatEnumerables<T>(IEnumerable<T> first, IEnumerable<T> second, IIterableOptions? options)
{
foreach (var item in first)
{
options?.cancellationToken?.ThrowIfCancellationRequested();
yield return item;
}
foreach (var item in second)
{
options?.cancellationToken?.ThrowIfCancellationRequested();
yield return item;
}
}
internal static IEnumerable<T> ConcatCommon<T>(IEnumerable<T> first, IEnumerable<T> second, IIterableOptions? options)
{
// Optimize for arrays
if (first is T[] array1 && second is T[] array2)
{
T[] result = new T[array1.Length + array2.Length];
Array.Copy(array1, result, array1.Length);
Array.Copy(array2, 0, result, array1.Length, array2.Length);
return result;
}
// Optimize for ICollection<T>
if (first is ICollection<T> collection1 && second is ICollection<T> collection2)
{
var resultList = new List<T>(collection1.Count + collection2.Count);
resultList.AddRange(collection1);
resultList.AddRange(collection2);
return resultList;
}
// Default to enumerable concatenation
return ConcatEnumerables(first, second, options);
}
public static IEnumerable<T> Concat<T>(this T[] first, T[] second)
{
return ConcatCommon(first: first, second, null);
}
public static IEnumerable<T> Concat<T>(this ICollection<T> first, T[] second)
{
return ConcatCommon(first: first, second, null);
}
public static IEnumerable<T> Concat<T>(this IEnumerable<T> first, T[] second)
{
return ConcatCommon(first: first, second, null);
}
#endregion
#region Filter
internal static IEnumerable<T> FilterCommon<T>(IEnumerable<T> source, Func<T, Int32, Boolean> callback, IIterableOptions? options)
{
var index = 0;
foreach (var item in source)
{
options?.cancellationToken?.ThrowIfCancellationRequested();
if (callback(item, index))
{
yield return item;
}
index++;
}
}
public static IEnumerable<T> Filter<T>(this T[] source, Func<T, Int32, Boolean> callback)
{
return FilterCommon(source, callback, null);
}
public static IEnumerable<T> Filter<T>(this T[] source, Func<T, Boolean> callback)
{
return FilterCommon(source, (item, index) => callback(item), null);
}
public static IEnumerable<T> Filter<T>(this ICollection<T> source, Func<T, Int32, Boolean> callback)
{
return FilterCommon(source, callback, null);
}
public static IEnumerable<T> Filter<T>(this ICollection<T> source, Func<T, Boolean> callback)
{
return FilterCommon(source, (item, index) => callback(item), null);
}
public static IEnumerable<T> Filter<T>(this IEnumerable<T> source, Func<T, Int32, Boolean> callback)
{
return FilterCommon(source, callback, null);
}
public static IEnumerable<T> Filter<T>(this IEnumerable<T> source, Func<T, Boolean> callback)
{
return FilterCommon(source, (item, index) => callback(item), null);
}
#endregion
#region ForEach
internal static void ForEachCommon<T>(IEnumerable<T> source, Action<T, Int32> callback, IIterableOptions? options)
{
var index = 0;
foreach (var item in source)
{
options?.cancellationToken?.ThrowIfCancellationRequested();
callback(item, index);
index++;
}
}
/**
* @description: Executes a provided function once for each array element.
* @callback: item, index
* @return: void
*/
public static void ForEach<T>(this T[] source, Action<T, Int32> callback)
{
ForEachCommon(source, callback, null);
}
public static void ForEach<T>(this T[] source, Action<T> callback)
{
ForEachCommon(source, (item, index) => callback(item), null);
}
public static void ForEach<T>(this ICollection<T> source, Action<T, Int32> callback)
{
ForEachCommon(source, callback, null);
}
public static void ForEach<T>(this ICollection<T> source, Action<T> callback)
{
ForEachCommon(source, (item, index) => callback(item), null);
}
public static void ForEach<T>(this IEnumerable<T> source, Action<T, Int32> callback)
{
ForEachCommon(source, callback, null);
}
public static void ForEach<T>(this IEnumerable<T> source, Action<T> callback)
{
ForEachCommon(source, (item, index) => callback(item), null);
}
#endregion
#region Map
internal static IEnumerable<T> MapCommon<T>(IEnumerable<T> source, Func<T, Int32, T> callback, IIterableOptions? options)
{
var index = 0;
foreach (var item in source)
{
options?.cancellationToken?.ThrowIfCancellationRequested();
yield return callback(item, index);
index++;
}
}
public static IEnumerable<T> Map<T>(this T[] source, Func<T, Int32, T> callback) where T : IEnumerable<T>, new()
{
return MapCommon(source, callback, null);
}
public static IEnumerable<T> Map<T>(this T[] source, Func<T, T> callback) where T : IEnumerable<T>, new()
{
return MapCommon(source, (item, index) => callback(item), null);
}
public static IEnumerable<T> Map<T>(this ICollection<T> source, Func<T, Int32, T> callback)
{
return MapCommon(source, callback, null);
}
public static IEnumerable<T> Map<T>(this ICollection<T> source, Func<T, T> callback)
{
return MapCommon(source, (item, index) => callback(item), null);
}
public static IEnumerable<T> Map<T>(this IEnumerable<T> source, Func<T, Int32, T> callback)
{
return MapCommon(source, callback, null);
}
public static IEnumerable<T> Map<T>(this IEnumerable<T> source, Func<T, T> callback)
{
return MapCommon(source, (item, index) => callback(item), null);
}
#endregion
#region Reduce
internal static IResult ReduceCommon<T, IResult>(IEnumerable<T> source, Func<IResult, T, Int32, IResult> callback, IResult initialValue, IIterableOptions? options)
{
IResult accumulator = initialValue;
var index = 0;
foreach (var item in source)
{
options?.cancellationToken?.ThrowIfCancellationRequested();
accumulator = callback(accumulator, item, index);
index++;
}
return accumulator;
}
/**
*
*/
public static IResult Reduce<T, IResult>(this T[] source, Func<IResult, T, Int32, IResult> callback, IResult initialValue)
{
return ReduceCommon(source, callback, initialValue, null);
}
public static IResult Reduce<T, IResult>(this T[] source, Func<IResult, T, IResult> callback, IResult initialValue)
{
return ReduceCommon(source, (accumulator, item, index) => callback(accumulator, item), initialValue, null);
}
public static IResult Reduce<T, IResult>(this ICollection<T> source, Func<IResult, T, Int32, IResult> callback, IResult initialValue)
{
return ReduceCommon(source, callback, initialValue, null);
}
public static IResult Reduce<T, IResult>(this ICollection<T> source, Func<IResult, T, IResult> callback, IResult initialValue)
{
return ReduceCommon(source, (accumulator, item, index) => callback(accumulator, item), initialValue, null);
}
public static IResult Reduce<T, IResult>(this IEnumerable<T> source, Func<IResult, T, Int32, IResult> callback, IResult initialValue)
{
return ReduceCommon(source, callback, initialValue, null);
}
public static IResult Reduce<T, IResult>(this IEnumerable<T> source, Func<IResult, T, IResult> callback, IResult initialValue)
{
return ReduceCommon(source, (accumulator, item, index) => callback(accumulator, item), initialValue, null);
}
#endregion
#region Slice
internal static IEnumerable<T> SliceCommon<T>(IEnumerable<T> source, int start, int end, IIterableOptions? options)
{
var sourceLength = 0;
// if the source is an array, we can use the length property
if (source is T[] array)
{
sourceLength = array.Length;
for (var index = start; index < end && index < sourceLength; index++)
{
options?.cancellationToken?.ThrowIfCancellationRequested();
yield return array[index];
}
yield break; // Exit the method after handling the array
}
if (source is ICollection<T> collection)
{
sourceLength = collection.Count;
}
else if (source is IEnumerable<T> enumerable)
{
sourceLength = enumerable.Count();
}
for (var index = start; index < end && index < sourceLength; index++)
{
options?.cancellationToken?.ThrowIfCancellationRequested();
yield return source.ElementAt(index);
}
}
public static IEnumerable<T> Slice<T>(this T[] source, int start, int end)
{
return SliceCommon(source, start, end, null);
}
public static IEnumerable<T> Slice<T>(this ICollection<T> source, int start, int end)
{
return SliceCommon(source, start, end, null);
}
public static IEnumerable<T> Slice<T>(this IEnumerable<T> source, int start, int end)
{
return SliceCommon(source, start, end, null);
}
#endregion
#region ToRecord
internal static IDictionary<TKey, TValue> ToRecordCommon<T, TKey, TValue>(IEnumerable<T> source, Func<T, int, KeyValuePair<TKey, TValue>> callback, IIterableOptions? options) where TKey : notnull
{
var dictionary = new Dictionary<TKey, TValue>();
var index = 0;
foreach (var item in source)
{
options?.cancellationToken?.ThrowIfCancellationRequested();
var keyValuePair = callback(item, index);
dictionary.Add(keyValuePair.Key, keyValuePair.Value);
index++;
}
return dictionary;
}
public static IDictionary<TKey, TValue> ToRecord<T, TKey, TValue>(this T[] source, Func<T, int, KeyValuePair<TKey, TValue>> callback) where TKey : notnull
{
return ToRecordCommon(source, callback, null);
}
public static IDictionary<TKey, TValue> ToRecord<T, TKey, TValue>(this T[] source, Func<T, KeyValuePair<TKey, TValue>> callback) where TKey : notnull
{
return ToRecordCommon(source, (item, index) => callback(item), null);
}
public static IDictionary<TKey, TValue> ToRecord<T, TKey, TValue>(this ICollection<T> source, Func<T, int, KeyValuePair<TKey, TValue>> callback) where TKey : notnull
{
return ToRecordCommon(source, callback, null);
}
public static IDictionary<TKey, TValue> ToRecord<T, TKey, TValue>(this ICollection<T> source, Func<T, KeyValuePair<TKey, TValue>> callback) where TKey : notnull
{
return ToRecordCommon(source, (item, index) => callback(item), null);
}
public static IDictionary<TKey, TValue> ToRecord<T, TKey, TValue>(this IEnumerable<T> source, Func<T, int, KeyValuePair<TKey, TValue>> callback) where TKey : notnull
{
return ToRecordCommon(source, callback, null);
}
public static IDictionary<TKey, TValue> ToRecord<T, TKey, TValue>(this IEnumerable<T> source, Func<T, KeyValuePair<TKey, TValue>> callback) where TKey : notnull
{
return ToRecordCommon(source, (item, index) => callback(item), null);
}
#endregion
#region SortCollection
internal static void QuickSort<T, TKey>(T[] array, int left, int right, Func<T, TKey> keySelector, SortDirection direction) where TKey : IComparable<TKey>
{
if (left < right)
{
int pivotIndex = Partition(array, left, right, keySelector, direction);
QuickSort(array, left, pivotIndex - 1, keySelector, direction);
QuickSort(array, pivotIndex + 1, right, keySelector, direction);
}
}
internal static int Partition<T, TKey>(T[] array, int left, int right, Func<T, TKey> keySelector, SortDirection direction) where TKey : IComparable<TKey>
{
var pivot = keySelector(array[right]);
int i = left - 1;
for (int j = left; j < right; j++)
{
bool shouldSwap = direction == SortDirection.Ascending
? keySelector(array[j]).CompareTo(pivot) < 0
: keySelector(array[j]).CompareTo(pivot) > 0;
if (shouldSwap)
{
i++;
Swap(ref array[i], ref array[j]);
}
}
Swap(ref array[i + 1], ref array[right]);
return i + 1;
}
private static void Swap<T>(ref T x, ref T y)
{
T temp = x;
x = y;
y = temp;
}
internal static IEnumerable<T> SortCollectionCommon<T, TKey>(IEnumerable<T> source, Func<T, TKey> keySelector, SortDirection direction = SortDirection.Ascending) where TKey : IComparable<TKey>
{
var array = source.ToArray();
QuickSort(array, 0, array.Length - 1, keySelector, direction);
return array;
}
public static IEnumerable<T> SortCollection<T, TKey>(this T[] source, Func<T, TKey> keySelector, SortDirection direction = SortDirection.Ascending) where TKey : IComparable<TKey>
{
return SortCollectionCommon(source, keySelector, direction);
}
public static IEnumerable<T> SortCollection<T, TKey>(this ICollection<T> source, Func<T, TKey> keySelector, SortDirection direction = SortDirection.Ascending) where TKey : IComparable<TKey>
{
return SortCollectionCommon(source, keySelector, direction);
}
public static IEnumerable<T> SortCollection<T, TKey>(this IEnumerable<T> source, Func<T, TKey> keySelector, SortDirection direction = SortDirection.Ascending) where TKey : IComparable<TKey>
{
return SortCollectionCommon(source, keySelector, direction);
}
#endregion
}
}