1 instantiation of SmallFrozenSet
System.Collections.Immutable (1)
System\Collections\Frozen\FrozenSet.cs (1)
219return new SmallFrozenSet<T>(source);
5 references to SmallFrozenSet
System.Collections.Immutable (5)
System\Collections\Frozen\SmallFrozenSet.AlternateLookup.cs (2)
23/// on instances known to be of type <see cref="SmallFrozenSet{T}"/>. 26=> ((SmallFrozenSet<T>)set).FindItemIndexAlternate(item);
System\Collections\Frozen\SmallFrozenSet.cs (3)
15internal sealed partial class SmallFrozenSet<T> : FrozenSetInternalBase<T, SmallFrozenSet<T>.GSW> 45private SmallFrozenSet<T> _set; 46public void Store(FrozenSet<T> set) => _set = (SmallFrozenSet<T>)set;