// 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; 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 new RepeatAsyncIterator(element, count); } private sealed class RepeatAsyncIterator : AsyncIterator, IAsyncIListProvider { 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); public Task GetCountAsync(bool onlyIfCheap, CancellationToken cancellationToken) => Task.FromResult(count); public Task ToArrayAsync(CancellationToken cancellationToken) { var res = new TResult[count]; for (var i = 0; i < count; i++) { res[i] = element; } return Task.FromResult(res); } public Task> ToListAsync(CancellationToken cancellationToken) { var res = new List(count); for (var i = 0; i < count; i++) { res.Add(element); } return Task.FromResult(res); } protected override async ValueTask MoveNextCore(CancellationToken cancellationToken) { 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; } } } }