M_CSharpx_MaybeExtensions_Bind__2 - adutton/commandline GitHub Wiki
Invokes a function on this maybe value that itself yields a maybe.
Namespace: CSharpx
Assembly: CommandLine (in CommandLine.dll) Version: 0.0.0
C#
public static Maybe<T2> Bind<T1, T2>(
this Maybe<T1> maybe,
Func<T1, Maybe<T2>> func
)VB
<ExtensionAttribute>
Public Shared Function Bind(Of T1, T2) (
maybe As Maybe(Of T1),
func As Func(Of T1, Maybe(Of T2))
) As Maybe(Of T2)C++
public:
[ExtensionAttribute]
generic<typename T1, typename T2>
static Maybe<T2>^ Bind(
Maybe<T1>^ maybe,
Func<T1, Maybe<T2>^>^ func
)F#
[<ExtensionAttribute>]
static member Bind :
maybe : Maybe<'T1> *
func : Func<'T1, Maybe<'T2>> -> Maybe<'T2>
- maybe
- Type: CSharpx.Maybe(T1)
- func
- Type: System.Func(T1, Maybe(T2))
- T1
- T2
Type: Maybe(T2)
In Visual Basic and C#, you can call this method as an instance method on any object of type Maybe(T1). When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).