Delegate SuperEnumerable.ReadOnlySpanFunc<TSource, TResult>
Delegate that receives a ReadOnlySpan<TSource>
and outputs a value of type outTResult
.
Namespace: SuperLinq
Assembly: SuperLinq.dll
Syntax
public delegate TResult SuperEnumerable.ReadOnlySpanFunc<TSource, out TResult>(ReadOnlySpan<TSource> span)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<TSource> | span | The parameter of the method that this delegate encapsulates. |
Returns
Type | Description |
---|---|
TResult | Value of type out |
Type Parameters
Name | Description |
---|---|
TSource | The type of items in the ReadOnlySpan. |
TResult | The type of the returned value. |
Constructors
Name | Description |
---|---|
ReadOnlySpanFunc(object, nint) |
Methods
Name | Description |
---|---|
BeginInvoke(ReadOnlySpan<TSource>, AsyncCallback, object) | |
EndInvoke(IAsyncResult) | |
Invoke(ReadOnlySpan<TSource>) |