- AsyncEnumerableExtensions
- AsStream <M, A> (this IAsyncEnumerable<A> ma)
- Map <A, B> (this IAsyncEnumerable<A> ma, Func<A, B> f)
- Bind <A, B> (this IAsyncEnumerable<A> ma, Func<A, IAsyncEnumerable<B>> f)
- Filter <A> ( this IAsyncEnumerable<A> ma, Func<A, bool> f)
- AsyncEnumerableExtensions
- Select <A, B> (this IAsyncEnumerable<A> ma, Func<A, 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 #
class AsyncEnumerableExtensions 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 #