Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/06/17 11:16:29 (7 years ago)
Author:
gkronber
Message:

#2697: merged r14944, r14945, r14948

File:
1 edited

Legend:

Unmodified
Added
Removed
  • stable/HeuristicLab.Common/3.3/EnumerableExtensions.cs

    r15142 r15144  
    8888    }
    8989
    90     public static IEnumerable<T> TakeEvery<T>(this IEnumerable<T> xs, int nth) {
    91       int i = 0;
    92       foreach (var x in xs) {
    93         if (i % nth == 0) yield return x;
    94         i++;
    95       }
    96     }
    97 
    9890    /// <summary>
    9991    /// Compute the n-ary cartesian product of arbitrarily many sequences: http://blogs.msdn.com/b/ericlippert/archive/2010/06/28/computing-a-cartesian-product-with-linq.aspx
Note: See TracChangeset for help on using the changeset viewer.