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