12 writes to Right
Test.Utilities (12)
SmallDictionary.cs (12)
92
currentNode.
Right
= Remove(currentNode.Right, hashCode);
126
currentNode.
Right
= Remove(currentNode.Right, temp.HashCode);
411
previousNode.
Right
= currentNode;
477
unbalancedParent.
Right
= rotated;
485
unbalanced.
Right
= right.Left;
498
left.
Right
= unbalanced;
512
rightLeft.
Right
= right;
513
unbalanced.
Right
= rightLeft.Left;
539
left.
Right
= leftRight.Left;
542
leftRight.
Right
= unbalanced;
595
newHead.
Right
= node.Right;
609
parent.
Right
= newHead;
31 references to Right
Test.Utilities (31)
SmallDictionary.cs (31)
92
currentNode.Right = Remove(currentNode.
Right
, hashCode);
97
if ((currentNode.Left == null) || (currentNode.
Right
== null))
101
temp = currentNode.
Right
;
118
AvlNode temp = MinValueNode(currentNode.
Right
);
126
currentNode.Right = Remove(currentNode.
Right
, temp.HashCode);
133
currentNode.Balance = (sbyte)(Height(currentNode.Left) - Height(currentNode.
Right
));
140
rotated = currentNode.
Right
!.Balance <= 0 ?
174
int b = Height(node.
Right
);
298
int b = AssertBalanced(V.
Right
);
324
b = b.
Right
;
407
if (currentNode.
Right
== null)
416
currentNode = currentNode.
Right
;
436
n = n.
Right
!;
451
rotated = unbalanced.
Right
!.Balance < 0 ?
483
RoslynDebug.Assert(unbalanced.
Right
is object);
484
var right = unbalanced.
Right
;
497
unbalanced.Left = left.
Right
;
507
RoslynDebug.Assert(unbalanced.
Right
is object);
508
RoslynDebug.Assert(unbalanced.
Right
.Left is object);
509
var right = unbalanced.
Right
;
511
right.Left = rightLeft.
Right
;
536
RoslynDebug.Assert(unbalanced.Left.
Right
!= null);
538
var leftRight = left.
Right
;
541
unbalanced.Left = leftRight.
Right
;
595
newHead.Right = node.
Right
;
638
if (root.Left == root.
Right
)
671
PushIfNotNull(_stack, curr.
Right
);
757
if (root.Left == root.
Right
)
789
PushIfNotNull(_stack, curr.
Right
);
863
if (root.Left == root.
Right
)
895
PushIfNotNull(_stack, curr.
Right
);