// 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 Task ContainsAsync(this IAsyncEnumerable source, TSource value, CancellationToken cancellationToken = default) { if (source == null) throw Error.ArgumentNull(nameof(source)); if (source is ICollection collection) { return Task.FromResult(collection.Contains(value)); } return ContainsCore(source, value, comparer: null, cancellationToken); } public static Task ContainsAsync(this IAsyncEnumerable source, TSource value, IEqualityComparer comparer, CancellationToken cancellationToken = default) { if (source == null) throw Error.ArgumentNull(nameof(source)); return ContainsCore(source, value, comparer, cancellationToken); } private static async Task ContainsCore(IAsyncEnumerable source, TSource value, IEqualityComparer comparer, CancellationToken cancellationToken) { var e = source.GetAsyncEnumerator(cancellationToken); try { // // See https://github.com/dotnet/corefx/pull/25097 for the optimization here. // if (comparer == null) { while (await e.MoveNextAsync().ConfigureAwait(false)) { if (EqualityComparer.Default.Equals(e.Current, value)) { return true; } } } else { while (await e.MoveNextAsync().ConfigureAwait(false)) { if (comparer.Equals(e.Current, value)) { return true; } } } } finally { await e.DisposeAsync().ConfigureAwait(false); } return false; } } }