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