Struct SFunc<T1, TResult>
Namespace: Towel
Assembly: Towel.dll
Syntax
public struct SFunc<T1, TResult> : IFunc<T1, TResult>
Type Parameters
| Name |
Description |
| T1 |
|
| TResult |
|
Methods
|
Improve this Doc
View Source
Invoke(T1)
Declaration
public TResult Invoke(T1 arg1)
Parameters
| Type |
Name |
Description |
| T1 |
arg1 |
|
Returns
Operators
|
Improve this Doc
View Source
Implicit(Func<T1, TResult> to SFunc<T1, TResult>)
Declaration
public static implicit operator SFunc<T1, TResult>(Func<T1, TResult> func)
Parameters
Returns
| Type |
Description |
| SFunc<T1, TResult> |
|
Implements