| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Namespace: CSharpx
Assembly: CommandLine (in CommandLine.dll) Version: 0.0.0
C#
public static Either<TLeft, TResult> Bind<TLeft, TRight, TResult>(
this Either<TLeft, TRight> either,
Func<TRight, Either<TLeft, TResult>> func
)VB
<ExtensionAttribute>
Public Shared Function Bind(Of TLeft, TRight, TResult) (
either As Either(Of TLeft, TRight),
func As Func(Of TRight, Either(Of TLeft, TResult))
) As Either(Of TLeft, TResult)C++
public:
[ExtensionAttribute]
generic<typename TLeft, typename TRight, typename TResult>
static Either<TLeft, TResult>^ Bind(
Either<TLeft, TRight>^ either,
Func<TRight, Either<TLeft, TResult>^>^ func
)F#
[<ExtensionAttribute>]
static member Bind :
either : Either<'TLeft, 'TRight> *
func : Func<'TRight, Either<'TLeft, 'TResult>> -> Either<'TLeft, 'TResult>
Type: Either(TLeft, TResult)
In Visual Basic and C#, you can call this method as an instance method on any object of type Either(TLeft, TRight). 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).
CommandLineParser Class Library V2.6
| Back | FazBrowse Home | New Git URL |