File tree Expand file tree Collapse file tree
src/FSharp.Control.AsyncSeq Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -90,11 +90,6 @@ module AsyncSeq =
9090 /// also the AsyncSeq.collect function.
9191 member For : source : AsyncSeq < 'T > * action :( 'T -> AsyncSeq < 'TResult >) -> AsyncSeq < 'TResult >
9292
93- /// Implements "return " for the asyncSeq computation builder.
94- // Commented because there does not seem to be a way to specify the correct parameter type to the compiler.
95- // What is needed is one parameter of type unit , but the below is interpreted as zero parameters.
96- // member Return : unit -> AsyncSeq < 'T >
97-
9893 /// Implements "try - finally " for the asyncSeq computation builder.
9994 member TryFinally : body : AsyncSeq < 'T > * compensation :( unit -> unit ) -> AsyncSeq < 'T >
10095
@@ -534,4 +529,4 @@ module AsyncSeqSrc =
534529 /// Creates an async sequence which yields values as they are put into the source and terminates
535530 /// when the source is closed. This sequence will yield items starting with the next put.
536531 /// Many async sequences can be created from once source.
537- val toAsyncSeq : src : AsyncSeqSrc < 'T > -> AsyncSeq < 'T >
532+ val toAsyncSeq : src : AsyncSeqSrc < 'T > -> AsyncSeq < 'T >
You can’t perform that action at this time.
0 commit comments