Table of Contents

Delegate SkiaHelper.ReadOnlySpanAction<T>

Namespace
Alternet.Skia
Assembly
Alternet.UI.Common.dll

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

span ReadOnlySpan<T>

The read-only span of elements to process.

Type Parameters

T

The 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.