M_CSharpx_MaybeExtensions_Map__2 - adutton/commandline GitHub Wiki
Transforms this maybe value by using a specified mapping function.
Namespace: CSharpx
Assembly: CommandLine (in CommandLine.dll) Version: 0.0.0
C#
public static Maybe<T2> Map<T1, T2>(
this Maybe<T1> maybe,
Func<T1, T2> func
)VB
<ExtensionAttribute>
Public Shared Function Map(Of T1, T2) (
maybe As Maybe(Of T1),
func As Func(Of T1, T2)
) As Maybe(Of T2)C++
public:
[ExtensionAttribute]
generic<typename T1, typename T2>
static Maybe<T2>^ Map(
Maybe<T1>^ maybe,
Func<T1, T2>^ func
)F#
[<ExtensionAttribute>]
static member Map :
maybe : Maybe<'T1> *
func : Func<'T1, 'T2> -> Maybe<'T2>
- maybe
- Type: CSharpx.Maybe(T1)
- func
- Type: System.Func(T1, 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).