namespace Qrakhen.Qamp.Core.Collections.Abstractions; public interface ISeekable { TKey Position { get; } TValue Seek(TKey position); }