You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This document covers some of the core operations for transforming and aggregating `AsyncSeq<'T>` values:
30
-
`map`, `mapAsync`, `filter`, `filterAsync`, `reduceAsync`, `mapFoldAsync`, `sumBy` and `sumByAsync`.
29
+
This document covers some of the core operations for transforming and aggregating `AsyncSeq<'T>` values: `map`, `mapAsync`, `filter`, `filterAsync`, `reduceAsync`, `sumBy` and `sumByAsync`.
31
30
32
31
*)
33
32
@@ -137,25 +136,6 @@ let sentence : Async<string> =
137
136
138
137
(**
139
138
140
-
### mapFoldAsync
141
-
142
-
`AsyncSeq.mapFoldAsync` combines a map and a fold in a single pass. The folder function receives
143
-
the current accumulator state and an element, and returns an `Async` of a *(result, newState)* pair.
144
-
The call returns the array of mapped results together with the final state:
145
-
146
-
*)
147
-
148
-
// Number each element with a running index, and count total characters as state.
0 commit comments