Skip to content

Instantly share code, notes, and snippets.

@dbrattli
Last active October 16, 2018 18:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dbrattli/f2035c7f3e4bbd5ae7e9f3f98da20dfb to your computer and use it in GitHub Desktop.
Save dbrattli/f2035c7f3e4bbd5ae7e9f3f98da20dfb to your computer and use it in GitHub Desktop.
Async Seq
type IAsyncDisposable =
abstract member DisposeAsync: unit -> Async<unit>
type IAsyncEnumerator<'a> =
inherit IDisposable
abstract member Current : 'a with get
abstract member MoveNextAsync : unit -> Async<bool>
type IAsyncEnumerable<'a> =
abstract member GetAsyncEnumerator : unit -> IAsyncEnumerator<'a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment