10 references to TreeRotation
System (10)
compmod\system\collections\generic\sortedset.cs (10)
495
TreeRotation
rotation = RotationNeeded(parent, current, sibling);
498
case
TreeRotation
.RightRotation:
504
case
TreeRotation
.LeftRotation:
511
case
TreeRotation
.RightLeftRotation:
517
case
TreeRotation
.LeftRightRotation:
880
private static
TreeRotation
RotationNeeded(Node parent, Node current, Node sibling) {
884
return
TreeRotation
.RightLeftRotation;
886
return
TreeRotation
.RightRotation;
889
return
TreeRotation
.LeftRotation;
891
return
TreeRotation
.LeftRightRotation;