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