namespace StitchATon2.Infra.Buffers; public interface IBuffer : IDisposable where T : unmanaged { ref T this[int index] { get; } Span Span { get; } }