10 references to ItemRef
System.Collections.Immutable (10)
System\Collections\Immutable\ImmutableDictionary_2.HashBucket.cs (3)
191ref readonly KeyValuePair<TKey, TValue> existingEntry = ref _additionalElements.ItemRef(keyCollisionIndex); 282value = _additionalElements.ItemRef(index).Value; 321actualKey = _additionalElements.ItemRef(index).Key;
System\Collections\Immutable\ImmutableHashSet_1.HashBucket.cs (1)
186existingValue = _additionalElements.ItemRef(index);
System\Collections\Immutable\ImmutableList_1.Builder.cs (2)
132return this.Root.ItemRef(index); 158return ref this.Root.ItemRef(index);
System\Collections\Immutable\ImmutableList_1.cs (2)
171public T this[int index] => _root.ItemRef(index); 179public ref readonly T ItemRef(int index) => ref _root.ItemRef(index);
System\Collections\Immutable\ImmutableList_1.Node.cs (2)
566T a = result.ItemRef(start); 567T b = result.ItemRef(end);