Table of Contents

Delegate SpanStringSelector<T>

Namespace
Garyon.Extensions
Assembly
Garyon.dll

Defines a selector delegate that converts a ReadOnlySpan<T> into a value.

public delegate T SpanStringSelector<T>(ReadOnlySpan<char> spanString)

Parameters

spanString ReadOnlySpan<char>

The ReadOnlySpan<T> that is being converted.

Returns

T

The converted value.

Type Parameters

T

The type of the converted value.

Extension Methods