2 writes to _groupings
System.Linq (2)
System\Linq\Lookup.cs (2)
129
_groupings
= new Grouping<TKey, TElement>[7];
258
_groupings
= newGroupings;
6 references to _groupings
System.Linq (6)
System\Linq\Lookup.cs (6)
207
for (Grouping<TKey, TElement>? g =
_groupings
[(uint)hashCode %
_groupings
.Length]; g is not null; g = g._hashNext)
217
if (_count ==
_groupings
.Length)
222
int index = hashCode %
_groupings
.Length;
224
g._hashNext =
_groupings
[index];
225
_groupings
[index] = g;