3 overrides of Count
Microsoft.CodeAnalysis.CodeStyle (3)
7 references to Count
Microsoft.CodeAnalysis.CodeStyle (7)
ImmutableHashMap.cs (7)
267get { return _root != null ? _root.Count : 0; }
516return root.Count == 0 ? this.Clear() : new ImmutableHashMap<TKey, TValue>(root, _keyComparer, _valueComparer);
877return new HashBucket(_hashRoll, _used, newBuckets, _count - existing.Count + added.Count);
913return new HashBucket(_hashRoll, RemoveBit(logicalSlot, _used), _buckets.RemoveAt(physicalSlot), _count - existing.Count);
918return new HashBucket(_hashRoll, _used, _buckets.ReplaceAt(physicalSlot, result), _count - existing.Count + result.Count);