AsyncEnumerable.ToHashSetAsync<TSource> Method

Definition

Creates a HashSet<T> from an IAsyncEnumerable<T>.

C#
public static System.Threading.Tasks.ValueTask<System.Collections.Generic.HashSet<TSource>> ToHashSetAsync<TSource>(this System.Collections.Generic.IAsyncEnumerable<TSource> source, System.Collections.Generic.IEqualityComparer<TSource>? comparer = default, System.Threading.CancellationToken cancellationToken = default);

Type Parameters

TSource

The type of the elements of source.

Parameters

source
IAsyncEnumerable<TSource>

An IEnumerable<T> to create a HashSet<T> from.

comparer
IEqualityComparer<TSource>

An IEqualityComparer<T> to compare keys.

cancellationToken
CancellationToken

The CancellationToken to monitor for cancellation requests. The default is None.

Returns

ValueTask<HashSet<TSource>>

A HashSet<T> that contains values of type TSource selected from the input sequence.

Exceptions

source is null.

Applies to

Produkt Versioner
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided), 10
.NET Standard 2.0 (package-provided)