- Timestamp:
- 11/15/16 21:23:43 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Common/3.3/EnumerableExtensions.cs
r13899 r14393 133 133 } 134 134 } 135 public static IEnumerable<T> TakeEvery<T>(this IEnumerable<T> xs, int nth) { 136 int i = 0; 137 foreach (var x in xs) { 138 if (i % nth == 0) yield return x; 139 i++; 140 } 141 } 135 142 136 143 /// <summary>
Note: See TracChangeset
for help on using the changeset viewer.