6 instantiations of HashBucket
Microsoft.CodeAnalysis.CodeStyle (6)
ImmutableHashMap.cs (6)
662return new HashBucket(suggestedHashRoll, this, bucket);
739return new HashBucket(suggestedHashRoll, this, bucket);
877return new HashBucket(_hashRoll, _used, newBuckets, _count - existing.Count + added.Count);
889return new HashBucket(_hashRoll, newUsed, newBuckets, _count + bucket.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);
2 references to HashBucket
Microsoft.CodeAnalysis.CodeStyle (2)