Delegate SpanFunc<T, U, R>
A Func<T1,T2,TResult> whose first argument is a Span<T>.
Namespace: Sawmill
Assembly: Sawmill.dll
Syntax
public delegate R SpanFunc<T, in U, out R>(Span<T> span, U arg);
Parameters
Type | Name | Description |
---|---|---|
Span<T> | span | The span |
U | arg | An additional argument |
Returns
Type | Description |
---|---|
R |
Type Parameters
Name | Description |
---|---|
T | The type of elements in the span |
U | The type of the additional argument |
R | The return type |