10 references to Root
System.Collections.Immutable (10)
System\Collections\Immutable\ImmutableDictionary_2.cs (9)
870
if (origin.
Root
.TryGetValue(hashCode, out bucket))
885
if (origin.
Root
.TryGetValue(hashCode, out bucket))
902
if (origin.
Root
.TryGetValue(hashCode, out bucket))
918
if (origin.
Root
.TryGetValue(hashCode, out bucket))
936
HashBucket bucket = origin.
Root
.GetValueOrDefault(hashCode);
943
SortedInt32KeyNode<ImmutableDictionary<TKey, TValue>.HashBucket> newRoot = UpdateRoot(origin.
Root
, hashCode, newBucket, origin.HashBucketComparer);
955
SortedInt32KeyNode<ImmutableDictionary<TKey, TValue>.HashBucket> newRoot = origin.
Root
;
980
if (origin.
Root
.TryGetValue(hashCode, out bucket))
983
SortedInt32KeyNode<ImmutableDictionary<TKey, TValue>.HashBucket> newRoot = UpdateRoot(origin.
Root
, hashCode, bucket.Remove(key, origin.KeyOnlyComparer, out result), origin.HashBucketComparer);
System\Collections\Immutable\ImmutableDictionary_2.MutationResult.cs (1)
32
_root = unchangedInput.
Root
;