Contents
- AsyncEnumerableExtensions
- AsStream <M, A> (this IAsyncEnumerable<A> ma)
- MapAsync <A, B> (this IAsyncEnumerable<A> ma, Func<A, B> f)
- ApplyAsync <A, B> (this IAsyncEnumerable<Func<A, B>> ff, IAsyncEnumerable<A> fa)
- BindAsync <A, B> (this IAsyncEnumerable<A> ma, Func<A, IAsyncEnumerable<B>> f)
- FilterAsync <A> ( this IAsyncEnumerable<A> ma, Func<A, bool> f)
- AsyncEnumerableExtensions
- Select <A, B> (this IAsyncEnumerable<A> ma, Func<A, B> f)
- Select <A, B> (this IAsyncEnumerable<A> ma, Func<A, ValueTask<B>> f)
- SelectMany <A, B> (this IAsyncEnumerable<A> ma, Func<A, IAsyncEnumerable<B>> f)
- SelectMany <A, B, C> ( this IAsyncEnumerable<A> ma, Func<A, IAsyncEnumerable<B>> bind, Func<A, B, C> project)
- Where <A> ( this IAsyncEnumerable<A> ma, Func<A, bool> f)
- Skip <A> (this IAsyncEnumerable<A> ma, int amount)
- Take <A> (this IAsyncEnumerable<A> ma, int amount)
class AsyncEnumerableExtensions Source #
Methods
method IAsyncEnumerable<B> ApplyAsync <A, B> (this IAsyncEnumerable<Func<A, B>> ff, IAsyncEnumerable<A> fa) Source #
method IAsyncEnumerable<B> BindAsync <A, B> (this IAsyncEnumerable<A> ma, Func<A, IAsyncEnumerable<B>> f) Source #
method IAsyncEnumerable<A> FilterAsync <A> ( this IAsyncEnumerable<A> ma, Func<A, bool> f) Source #
class AsyncEnumerableExtensions Source #
Methods
method IAsyncEnumerable<B> Select <A, B> (this IAsyncEnumerable<A> ma, Func<A, ValueTask<B>> f) Source #
method IAsyncEnumerable<B> SelectMany <A, B> (this IAsyncEnumerable<A> ma, Func<A, IAsyncEnumerable<B>> f) Source #
method IAsyncEnumerable<C> SelectMany <A, B, C> ( this IAsyncEnumerable<A> ma, Func<A, IAsyncEnumerable<B>> bind, Func<A, B, C> project) Source #