Delegate OutFunc<T1, T2, TResult>
- Namespace
- LfrlAnvil.Functional.Delegates
- Assembly
- LfrlAnvil.Functional.dll
Represents a delegate that returns bool and has three parameters
with the last one being an out parameter of TResult type.
public delegate bool OutFunc<in T1, in T2, TResult>(T1 t1, T2 t2, out TResult result)
Parameters
t1T1- Represents a delegate that returns and has three parameters with the last one being an out parameter of TResult type.
t2T2- Represents a delegate that returns and has three parameters with the last one being an out parameter of TResult type.
resultTResult- Represents a delegate that returns and has three parameters with the last one being an out parameter of TResult type.
Returns
- bool
- Represents a delegate that returns and has three parameters with the last one being an out parameter of TResult type.
Type Parameters
T1Type of the first parameter.
T2Type of the second parameter.
TResultout parameter type.
- Extension Methods