SpanFuncT, TResult Delegate

Encapsulates a method that returns a SpanT.

Definition

Namespace: Ookii.Common
Assembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
C#
public delegate Span<TResult> SpanFunc<T, TResult>(
	T arg
)

Parameters

arg  T
The first argument for the encapsulated method.

Type Parameters

T
The type of the first argument.
TResult
The type of the items in the SpanT.

Return Value

SpanTResult
The return value of the method that this delegate encapsulates.

See Also