Interface IRowIntervalOperation<TBuffer>
Defines the contract for an action that operates on a row interval with a temporary buffer.
Namespace: SixLabors.ImageSharp.Advanced
Assembly: SixLabors.ImageSharp.dll
Syntax
public interface IRowIntervalOperation<TBuffer>
    where TBuffer : structType Parameters
| Name | Description | 
|---|---|
| TBuffer | The type of buffer elements. | 
Methods
| Improve this Doc View SourceInvoke(in RowInterval, Span<TBuffer>)
Invokes the method passing the row interval and a buffer.
Declaration
void Invoke(in RowInterval rows, Span<TBuffer> span)Parameters
| Type | Name | Description | 
|---|---|---|
| RowInterval | rows | The row interval. | 
| Span<TBuffer> | span | The contiguous region of memory. |