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
t1
T1- Represents a delegate that returns and has two parameters with the last one being an out parameter of TResult type.
result
TResult- 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
T1
Type of the first parameter.
TResult
out parameter type.
- Extension Methods