Skip to content

M_CSharpx_MaybeExtensions_Map__2

Moh.Hassan edited this page Oct 10, 2019 · 1 revision

MaybeExtensions.Map(T1, T2) Method

Transforms this maybe value by using a specified mapping function.

Namespace: CSharpx
Assembly: CommandLine (in CommandLine.dll) Version: 0.0.0

Syntax

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> 

Parameters

 

maybe
Type: CSharpx.Maybe(T1)
func
Type: System.Func(T1, T2)

Type Parameters

 

T1
T2

Return Value

Type: Maybe(T2)

Usage Note

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).

See Also

Reference

MaybeExtensions Class
CSharpx Namespace

Clone this wiki locally