| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Transforms a Either's right value by using a specified mapping function.
Namespace: CSharpx
Assembly: CommandLine (in CommandLine.dll) Version: 0.0.0
C#
public static Either<TLeft, TResult> Map<TLeft, TRight, TResult>(
Either<TLeft, TRight> either,
Func<TRight, TResult> func
)VB
Public Shared Function Map(Of TLeft, TRight, TResult) (
either As Either(Of TLeft, TRight),
func As Func(Of TRight, TResult)
) As Either(Of TLeft, TResult)C++
public:
generic<typename TLeft, typename TRight, typename TResult>
static Either<TLeft, TResult>^ Map(
Either<TLeft, TRight>^ either,
Func<TRight, TResult>^ func
)F#
static member Map :
either : Either<'TLeft, 'TRight> *
func : Func<'TRight, 'TResult> -> Either<'TLeft, 'TResult>
Type: Either(TLeft, TResult)
CommandLineParser Class Library V2.6
| Back | FazBrowse Home | New Git URL |