2 implementations of IReadOnlySet
Microsoft.CodeAnalysis.Extensions.Package (2)
src\Dependencies\Collections\Specialized\SpecializedCollections.Empty.Set.cs (1)
17internal class Set<T> : Collection<T>, ISet<T>, IReadOnlySet<T>
src\Dependencies\Collections\Specialized\SpecializedCollections.ReadOnly.Set.cs (1)
16internal class Set<TUnderlying, T> : Collection<TUnderlying, T>, ISet<T>, IReadOnlySet<T>
3 references to IReadOnlySet
Microsoft.CodeAnalysis.Extensions.Package (3)
Compilation\CompilationExtensions.cs (1)
178=> compilation.GetTypeByMetadataName(typeof(IReadOnlySet<>).FullName!);
src\Dependencies\Collections\Specialized\SpecializedCollections.cs (2)
48public static IReadOnlySet<T> EmptyReadOnlySet<T>() 109public static IReadOnlySet<T> StronglyTypedReadOnlySet<T>(ISet<T>? set)