namespace Qrakhen.Qamp.Core.Collections.Abstractions;
public interface IReadable<out T>
{
T Read(int position);
T[] Read(int position, int length);
}