8 overrides of CountCore
System.Collections.Immutable (8)
System\Collections\Frozen\EmptyFrozenSet.cs (1)
18private protected override int CountCore => 0;
System\Collections\Frozen\Int32\Int32FrozenSet.cs (1)
40private protected override int CountCore => _hashTable.Count;
System\Collections\Frozen\ItemsFrozenSet.cs (1)
52private protected sealed override int CountCore => _hashTable.Count;
System\Collections\Frozen\SmallFrozenSet.cs (1)
25private protected override int CountCore => _items.Length;
System\Collections\Frozen\SmallValueTypeComparableFrozenSet.cs (1)
40private protected override int CountCore => _items.Length;
System\Collections\Frozen\SmallValueTypeDefaultComparerFrozenSet.cs (1)
29private protected override int CountCore => _items.Length;
System\Collections\Frozen\String\LengthBucketsFrozenSet.cs (1)
50private protected override int CountCore => _items.Length;
System\Collections\Frozen\String\OrdinalStringFrozenSet.cs (1)
62private protected override int CountCore => _hashTable.Count;
1 reference to CountCore
System.Collections.Immutable (1)
System\Collections\Frozen\FrozenSet.cs (1)
264public int Count => CountCore;