// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT 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 AsyncEnumerableEx
    {
        /// 
        /// Ignores all elements in an async-enumerable sequence leaving only the termination messages.
        /// 
        /// The type of the elements in the source sequence.
        /// Source sequence.
        /// An empty async-enumerable sequence that signals termination, successful or exceptional, of the source sequence.
        ///  is null.
        public static IAsyncEnumerable IgnoreElements(this IAsyncEnumerable source)
        {
            if (source == null)
                throw Error.ArgumentNull(nameof(source));
            return Core(source);
            static async IAsyncEnumerable Core(IAsyncEnumerable source, [System.Runtime.CompilerServices.EnumeratorCancellation] CancellationToken cancellationToken = default)
            {
                await foreach (var _ in source.WithCancellation(cancellationToken).ConfigureAwait(false))
                {
                }
                yield break;
            }
        }
    }
}