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