4 implementations of IReadOnlySet
Microsoft.CodeAnalysis.Workspaces (4)
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\ObjectPools\PooledHashSet.cs\PooledHashSet.cs (1)
9internal partial class PooledHashSet<T> : IPooled, IReadOnlySet<T>
SetWithInsertionOrder.cs (1)
17internal sealed class SetWithInsertionOrder<T> : IEnumerable<T>, IReadOnlySet<T>
SpecializedCollections.Empty.Set.cs (1)
14internal class Set<T> : Collection<T>, ISet<T>, IReadOnlySet<T>
SpecializedCollections.ReadOnly.Set.cs (1)
14internal class Set<TUnderlying, T> : Collection<TUnderlying, T>, ISet<T>, IReadOnlySet<T>
3 references to IReadOnlySet
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (1)
4861Roslyn.Utilities.IReadOnlySet<ISymbol> processedSymbols,
Microsoft.CodeAnalysis.Workspaces (2)
SpecializedCollections.cs (2)
46public static IReadOnlySet<T> EmptyReadOnlySet<T>() 107public static IReadOnlySet<T> StronglyTypedReadOnlySet<T>(ISet<T>? set)