qamp/Qrakhen.Qamp.Core/IAdd.cs

8 lines
131 B
C#

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