using System.Numerics;
namespace Qrakhen.Qamp.Core;
public interface IAdd<out TKey, in TValue>
{
TKey Add(TValue value);
}