11 references to TreeRotation
System.Collections (11)
System\Collections\Generic\SortedSet.cs (11)
1660
public
TreeRotation
GetRotation(Node current, Node sibling)
1669
(currentIsLeftChild ?
TreeRotation
.RightLeft :
TreeRotation
.Right) :
1670
(currentIsLeftChild ?
TreeRotation
.Left :
TreeRotation
.LeftRight);
1699
public Node? Rotate(
TreeRotation
rotation)
1704
case
TreeRotation
.Right:
1709
case
TreeRotation
.Left:
1714
case
TreeRotation
.RightLeft:
1717
case
TreeRotation
.LeftRight:
1721
Debug.Fail($"{nameof(rotation)}: {rotation} is not a defined {nameof(
TreeRotation
)} value.");