Show / Hide Table of Contents

Delegate ReadOnlySpanFunc<T, TParam, TReturn>

A function which computes a result from a and an additional argument.

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

  • Improve this Doc
  • View Source
Back to top Generated by DocFX