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