Delegate ReadOnlySpanFunc<T, TParam, TReturn>
A function which computes a result from a 
Namespace: Pidgin
Assembly: Pidgin.dll
Syntax
public delegate TReturn ReadOnlySpanFunc<T, in TParam, out TReturn>(ReadOnlySpan<T> span, TParam param);
  Parameters
| Type | Name | Description | 
|---|---|---|
| ReadOnlySpan<T> | span | The input span  | 
      
| TParam | param | An additional argument  | 
      
Returns
| Type | Description | 
|---|---|
| TReturn | The result  | 
      
Type Parameters
| Name | Description | 
|---|---|
| T | The type of elements of the span  | 
      
| TParam | The type of the additional argument  | 
      
| TReturn | The type of the result computed by the function  |