Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ MaxInternal

virtual ? T System.Collections.Generic.SortedSet< T >.MaxInternal
getpackageinherited

Definition at line 731 of file SortedSet.cs.

732 {
733 get
734 {
735 if (root == null)
736 {
737 return default(T);
738 }
739 Node right = root;
740 while (right.Right != null)
741 {
742 right = right.Right;
743 }
744 return right.Item;
745 }
746 }