10 lines
No EOL
202 B
C#
10 lines
No EOL
202 B
C#
namespace StitchATon2.Infra.Buffers;
|
|
|
|
public interface IBuffer<T> : IDisposable where T : unmanaged
|
|
{
|
|
ref T this[int index] { get; }
|
|
|
|
Span<T> Span { get; }
|
|
|
|
int Length { get; }
|
|
} |