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