-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnumerableExtensions.cs
291 lines (249 loc) · 10.5 KB
/
EnumerableExtensions.cs
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
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
namespace Annoyances.Net
{
/// <summary>
/// More LINQ-like methods. Extension methods for <see cref="IEnumerable{T}"/>.
/// </summary>
public static class EnumerableExtensions
{
#region MaxOrDefault
public static T MaxOrDefault<T>(this IEnumerable<T> sequence, T defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Max(), defaultValue);
}
public static TResult MaxOrDefault<T, TResult>(
this IEnumerable<T> sequence, Func<T, TResult> f, TResult defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Max(f), defaultValue);
}
#endregion
#region MinOrDefault
public static T MinOrDefault<T>(this IEnumerable<T> sequence, T defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Min(), defaultValue);
}
public static TResult MinOrDefault<T, TResult>(
this IEnumerable<T> sequence, Func<T, TResult> f, TResult defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Min(f), defaultValue);
}
#endregion
#region AverageOrDefault_decimal
public static decimal AverageOrDefault(this IEnumerable<decimal> sequence, decimal defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(), defaultValue);
}
public static decimal AverageOrDefault<T>(
this IEnumerable<T> sequence, Func<T, decimal> f, decimal defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(f), defaultValue);
}
public static decimal? AverageOrDefault(this IEnumerable<decimal?> sequence, decimal? defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(), defaultValue);
}
public static decimal? AverageOrDefault<T>(
this IEnumerable<T> sequence, Func<T, decimal?> f, decimal? defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(f), defaultValue);
}
#endregion
#region AverageOrDefault_double
public static double AverageOrDefault(this IEnumerable<double> sequence, double defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(), defaultValue);
}
public static double AverageOrDefault<T>(
this IEnumerable<T> sequence, Func<T, double> f, double defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(f), defaultValue);
}
public static double? AverageOrDefault(this IEnumerable<double?> sequence, double? defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(), defaultValue);
}
public static double? AverageOrDefault<T>(
this IEnumerable<T> sequence, Func<T, double?> f, double? defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(f), defaultValue);
}
#endregion
#region AverageOrDefault_float
public static float AverageOrDefault(this IEnumerable<float> sequence, float defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(), defaultValue);
}
public static float AverageOrDefault<T>(
this IEnumerable<T> sequence, Func<T, float> f, float defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(f), defaultValue);
}
public static float? AverageOrDefault(this IEnumerable<float?> sequence, float? defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(), defaultValue);
}
public static float? AverageOrDefault<T>(
this IEnumerable<T> sequence, Func<T, float?> f, float? defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(f), defaultValue);
}
#endregion
#region AverageOrDefault_int
public static double AverageOrDefault(this IEnumerable<int> sequence, double defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(), defaultValue);
}
public static double AverageOrDefault<T>(
this IEnumerable<T> sequence, Func<T, int> f, double defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(f), defaultValue);
}
public static double? AverageOrDefault(this IEnumerable<int?> sequence, double? defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(), defaultValue);
}
public static double? AverageOrDefault<T>(
this IEnumerable<T> sequence, Func<T, int?> f, double? defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(f), defaultValue);
}
#endregion
#region AverageOrDefault_long
public static double AverageOrDefault(this IEnumerable<long> sequence, double defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(), defaultValue);
}
public static double AverageOrDefault<T>(
this IEnumerable<T> sequence, Func<T, long> f, double defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(f), defaultValue);
}
public static double? AverageOrDefault(this IEnumerable<long?> sequence, double? defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(), defaultValue);
}
public static double? AverageOrDefault<T>(
this IEnumerable<T> sequence, Func<T, long?> f, double? defaultValue)
{
return ApplyFunctionWithDefault(sequence, s => s.Average(f), defaultValue);
}
#endregion
#region TakeEvery
public static IEnumerable<T> TakeEvery<T>(this IEnumerable<T> sequence, int n)
{
if (n < 1)
{
throw new ArgumentOutOfRangeException("n", "Must be at least 1");
}
int i = 0;
foreach (T element in sequence ?? Enumerable.Empty<T>())
{
if (i % n == 0)
{
yield return element;
}
i++;
}
}
#endregion
#region Shuffle
public static IEnumerable<T> Shuffle<T>(this IEnumerable<T> sequence)
{
return sequence.OrderBy(e => Guid.NewGuid());
}
#endregion
#region Cycle
// ReSharper disable FunctionNeverReturns
// ReSharper disable PossibleMultipleEnumeration
/// <summary>
/// Cycle endlessly through the items in the sequence
/// </summary>
/// <typeparam name="T">The type of elements in the sequence</typeparam>
/// <param name="sequence">The sequence to cycle through (must be multiply enumerable)</param>
/// <returns>Each item in the sequence, then starts again at the beginning.</returns>
/// <remarks>Use with <c>Take</c> to prevent an endless loop.</remarks>
public static IEnumerable<T> Cycle<T>(this IEnumerable<T> sequence)
{
if (sequence == null || !sequence.Any())
{
throw new EmptySequenceException();
}
while (true)
{
foreach (T item in sequence)
{
yield return item;
}
}
}
// ReSharper restore PossibleMultipleEnumeration
// ReSharper restore FunctionNeverReturns
#endregion
/// <summary>
/// Gets all permutations of the elements in the sequence
/// </summary>
/// <typeparam name="T">The type of elements in the sequence</typeparam>
/// <param name="sequence">The sequence to permute</param>
/// <returns>All permutations, e.g. [1, 2, 3] yields [ [1, 2, 3], [1, 3, 2], [2, 1, 3], [2, 3, 1], [3, 1, 2], [3, 2, 1] ]</returns>
public static IEnumerable<IEnumerable<T>> Permute<T>(this IEnumerable<T> sequence)
{
if (sequence == null)
{
throw new ArgumentNullException("sequence");
}
T[] array = sequence as T[] ?? sequence.ToArray();
if (array.Length == 0)
{
return Enumerable.Empty<IEnumerable<T>>();
}
if (array.Length == 1)
{
return new[] { array };
}
return PermuteMultipleElements(array);
}
private static IEnumerable<IEnumerable<T>> PermuteMultipleElements<T>(IList<T> array)
{
Debug.Assert(array != null);
Debug.Assert(array.Count > 1);
// e.g. if given [1, 2, 3, 4] then return
// sequences starting with 1 for all permutations of [2, 3, 4] following, then
// sequences starting with 2 for all permutations of [1, 3, 4] following, then
// sequences starting with 3 for all permutations of [1, 2, 4] following, then
// sequences starting with 4 for all permutations of [1, 2, 3] following
for (int i = 0; i < array.Count; i++)
{
int i1 = i;
IEnumerable<T> others = array.Where((t, j) => j != i1);
foreach (IEnumerable<T> permutedOthers in others.Permute())
{
yield return (new[] { array[i] }).Concat(permutedOthers);
}
}
}
private static IEnumerable<T> MakeSafeForMultipleEnumeration<T>(IEnumerable<T> enumerable)
{
return enumerable as IList<T> ?? enumerable.ToList();
}
public static TResult ApplyFunctionWithDefault<T, TResult>(IEnumerable<T> sequence, Func<IEnumerable<T>, TResult> function, TResult defaultValue)
{
if (sequence == null)
{
return defaultValue;
}
sequence = MakeSafeForMultipleEnumeration(sequence);
// ReSharper disable PossibleMultipleEnumeration
return !sequence.Any() ? defaultValue : function(sequence);
// ReSharper restore PossibleMultipleEnumeration
}
}
/// <summary>
/// Thrown when a sequence is null or empty and is expected not to be.
/// </summary>
public class EmptySequenceException : Exception
{
}
}