namespace Qrakhen.Qamp.Core.Collections.Abstractions;
public interface IPeekable<out T>
{
T Peek(int delta = -1);
}