NullableReadOnlySpan<T>.MapReadOnlyFunc<TResult> Delegate

Encapsulates a method that maps a ReadOnlySpan<T> to another ReadOnlySpan<T>.

Definition

Namespace: Ookii.Common
Assembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
C#
public delegate ReadOnlySpan<TResult> MapReadOnlyFunc<TResult>(
	ReadOnlySpan<T> value
)

Parameters

value  ReadOnlySpan<T>
The value to map.

Type Parameters

TResult
The type of the items in the resulting ReadOnlySpan<T>.

Return Value

ReadOnlySpan<TResult>
The mapped value.

See Also