Files
2026-08-27 10:56:38 -06:00

9 lines
113 B
C#

namespace Roslyn.Utilities;
internal interface IReadOnlySet<T>
{
int Count { get; }
bool Contains(T item);
}