qamp/Qrakhen.Qamp.Core/Collections/Abstractions/IGet.cs

7 lines
132 B
C#

namespace Qrakhen.Qamp.Core.Collections.Abstractions;
public interface IGet<in TKey, out TValue>
{
TValue Get(TKey index);
}