Sha256: 7b5d077d5f4cde18c502ca77399d3a269b2eda46afbd9c4d9132f113ea397b5e
Contents?: true
Size: 282 Bytes
Versions: 332
Compression:
Stored size: 282 Bytes
Contents
using System; using System.Collections.Generic; public static class AccumulateExtensions { public static IEnumerable<U> Accumulate<T, U>(this IEnumerable<T> collection, Func<T, U> func) { foreach (var item in collection) yield return func(item); } }
Version data entries
332 entries across 332 versions & 1 rubygems