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
sourceReadOnlySpan<TSource>The span that is being converted.
Returns
- TResult
The converted value.
Type Parameters
TSourceThe type of the contained values in the span.
TResultThe type of the converted value.
- Extension Methods