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