// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the Apache 2.0 License. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.Diagnostics; using System.Threading; namespace System.Linq { public static partial class AsyncEnumerable { public static IAsyncEnumerable CreateEnumerable(Func> getEnumerator) { if (getEnumerator == null) throw Error.ArgumentNull(nameof(getEnumerator)); return new AnonymousAsyncEnumerable(getEnumerator); } private sealed class AnonymousAsyncEnumerable : IAsyncEnumerable { private readonly Func> _getEnumerator; public AnonymousAsyncEnumerable(Func> getEnumerator) { Debug.Assert(getEnumerator != null); _getEnumerator = getEnumerator; } public IAsyncEnumerator GetAsyncEnumerator(CancellationToken cancellationToken) => _getEnumerator(cancellationToken); } } }