M_CSharpx_Maybe_Just__1 - adutton/commandline GitHub Wiki
Builds the case when Maybe contains a value.
Namespace: CSharpx
Assembly: CommandLine (in CommandLine.dll) Version: 0.0.0
C#
public static Just<T> Just<T>(
T value
)VB
Public Shared Function Just(Of T) (
value As T
) As Just(Of T)C++
public:
generic<typename T>
static Just<T>^ Just(
T value
)F#
static member Just :
value : 'T -> Just<'T>
- value
- Type: T
- T
Type: Just(T)