namespace Qrakhen.Qamp.Core.Collections.Abstractions; public interface ISet { TValue this[TKey index] { set; } void Set(TKey index, TValue value); }