using System; namespace MemoryPools.Collections.Linq { public static partial class PoolingEnumerable { public static TSource Aggregate(this IPoolingEnumerable source, Func func) { if (source == null!) { throw new ArgumentNullException(nameof(source)); } if (func == null!) { throw new ArgumentNullException(nameof(func)); } using (var enumerator = source.GetEnumerator()) { if (!enumerator.MoveNext()) { throw new InvalidOperationException("Sequence contains no elements"); } var result = enumerator.Current; while (enumerator.MoveNext()) { result = func(result, enumerator.Current); } return result; } } public static TAccumulate Aggregate(this IPoolingEnumerable source, TAccumulate seed, Func func) { if (source == null!) { throw new ArgumentNullException(nameof(source)); } if (func == null!) { throw new ArgumentNullException(nameof(func)); } var result = seed; foreach (var element in source) { result = func(result, element); } return result; } public static TResult Aggregate(this IPoolingEnumerable source, TAccumulate seed, Func func, Func resultSelector) { if (source == null!) { throw new ArgumentNullException(nameof(source)); } if (func == null!) { throw new ArgumentNullException(nameof(func)); } if (resultSelector == null!) { throw new ArgumentNullException(nameof(resultSelector)); } var result = seed; foreach (var element in source) { result = func(result, element); } return resultSelector(result); } } }