We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe26d4b commit c4ecf2fCopy full SHA for c4ecf2f
src/FsToolkit.ErrorHandling/OptionCE.fs
@@ -17,12 +17,12 @@ module OptionCE =
17
Option.bind binder input
18
19
// Could not get it to work solely with Source. In loop cases it would potentially match the #seq overload and ask for type annotation
20
- // member inline this.Bind
21
- // (
22
- // m: 'input when 'input: null,
23
- // [<InlineIfLambda>] binder: 'input -> 'output option
24
- // ) : 'output option =
25
- // this.Bind(Option.ofObj m, binder)
+ member inline this.Bind
+ (
+ m: 'input when 'input: null,
+ [<InlineIfLambda>] binder: 'input -> 'output option
+ ) : 'output option =
+ this.Bind(Option.ofObj m, binder)
26
27
member inline this.Zero() : unit option = this.Return()
28
0 commit comments