Delegate SkiaHelper.ReadOnlySpanAction<T>
Represents a method that performs an action on a read-only span
of elements of type T.
public delegate void SkiaHelper.ReadOnlySpanAction<T>(ReadOnlySpan<T> span)
Parameters
spanReadOnlySpan<T>The read-only span of elements to process.
Type Parameters
TThe type of the elements in the read-only span.
Remarks
This delegate is commonly used to define operations that work on spans of data without modifying the underlying memory.