Sha256: ba7834c4350afae722f40028dc29d637caa6b37fb23c420351d400af8df8c5bb
Contents?: true
Size: 287 Bytes
Versions: 281
Compression:
Stored size: 287 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) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
281 entries across 281 versions & 1 rubygems