11 references to TreeRotation
System.Collections (11)
System\Collections\Generic\SortedSet.cs (11)
1663
public
TreeRotation
GetRotation(Node current, Node sibling)
1672
(currentIsLeftChild ?
TreeRotation
.RightLeft :
TreeRotation
.Right) :
1673
(currentIsLeftChild ?
TreeRotation
.Left :
TreeRotation
.LeftRight);
1702
public Node? Rotate(
TreeRotation
rotation)
1707
case
TreeRotation
.Right:
1712
case
TreeRotation
.Left:
1717
case
TreeRotation
.RightLeft:
1720
case
TreeRotation
.LeftRight:
1724
Debug.Fail($"{nameof(rotation)}: {rotation} is not a defined {nameof(
TreeRotation
)} value.");