2 writes to _count
System.Collections.Immutable (2)
System\Collections\Immutable\ImmutableSortedSet_1.Node.cs (2)
91
_count
= 1 + left._count + right._count;
766
_count
= 1 + _left._count + _right._count;
11 references to _count
System.Collections.Immutable (11)
System\Collections\Immutable\ImmutableSortedSet_1.Node.cs (11)
91
_count = 1 + left.
_count
+ right.
_count
;
140
get { return
_count
; }
209
if (index < _left.
_count
)
214
if (index > _left.
_count
)
216
return _right[index - _left.
_count
- 1];
239
if (index < _left.
_count
)
244
if (index > _left.
_count
)
246
return ref _right.ItemRefUnchecked(index - _left.
_count
- 1);
766
_count = 1 + _left.
_count
+ _right.
_count
;