Contents
- AsyncEnumerableExtensions
- 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
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> SelectMany <B> (Func<A, IAsyncEnumerable<B>> f) Source #
method IAsyncEnumerable<C> SelectMany <B, C> (Func<A, IAsyncEnumerable<B>> bind, Func<A, B, C> project) Source #