namespace Qrakhen.Qamp.Core.Collections.Abstractions; public interface IStack : IPush, IPop; public interface IPush { TKey Push(T value); } public interface IPop { T Pop(); }