2 implementations of IReadOnlySet
Microsoft.CodeAnalysis.Collections.Package (2)
Specialized\SpecializedCollections.Empty.Set.cs (1)
14internal class Set<T> : Collection<T>, ISet<T>, IReadOnlySet<T>
Specialized\SpecializedCollections.ReadOnly.Set.cs (1)
14internal class Set<TUnderlying, T> : Collection<TUnderlying, T>, ISet<T>, IReadOnlySet<T>
2 references to IReadOnlySet
Microsoft.CodeAnalysis.Collections.Package (2)
Specialized\SpecializedCollections.cs (2)
46public static IReadOnlySet<T> EmptyReadOnlySet<T>() 107public static IReadOnlySet<T> StronglyTypedReadOnlySet<T>(ISet<T>? set)