// 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.Threading.Tasks; namespace System.Linq { public static partial class AsyncEnumerable { public static IAsyncEnumerable Repeat(TResult element, int count) { if (count < 0) throw new ArgumentOutOfRangeException(nameof(count)); return Enumerable.Repeat(element, count).ToAsyncEnumerable(); } private sealed class RepeatAsyncIterator : AsyncIterator { private readonly TResult element; private readonly int count; private int remaining; public RepeatAsyncIterator(TResult element, int count) { this.element = element; this.count = count; } public override AsyncIterator Clone() => new RepeatAsyncIterator(element, count); protected override async Task MoveNextCore() { switch (state) { case AsyncIteratorState.Allocated: remaining = count; if (remaining > 0) { current = element; } state = AsyncIteratorState.Iterating; goto case AsyncIteratorState.Iterating; case AsyncIteratorState.Iterating: if (remaining-- != 0) { return true; } break; } await DisposeAsync().ConfigureAwait(false); return false; } } } }