sequenceAsyncA x
Async<'a> list
Async<'a list>
Transform a "list" into a "Async" and collect the results using apply.
traverseAsyncA f list
'a -> Async<'b>
'a list
Async<'b list>
Map a Async producing function over a list to get a new Async using applicative style. ('a -> Async<'b>) -> 'a list -> Async<'b list>