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