Table of Contents

Delegate SpanExtensions.ReadOnlySpanSelector<TSource, TResult>

Namespace
Garyon.Extensions
Assembly
Garyon.dll

Defines a selector delegate that converts a span of values into another value.

public delegate TResult SpanExtensions.ReadOnlySpanSelector<TSource, TResult>(ReadOnlySpan<TSource> source)

Parameters

source ReadOnlySpan<TSource>

The span that is being converted.

Returns

TResult

The converted value.

Type Parameters

TSource

The type of the contained values in the span.

TResult

The type of the converted value.

Extension Methods