StitchATon2/Infra/Buffers/IBuffer.cs

12 lines
241 B
C#
Raw Permalink Normal View History

2025-07-30 07:30:00 +07:00
namespace StitchATon2.Infra.Buffers;
public interface IBuffer<T> : IDisposable where T : unmanaged
{
ref T this[int index] { get; }
Span<T> Span { get; }
Memory<T> Memory { get; }
int Length { get; }
2025-07-30 07:30:00 +07:00
}