Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
MaxInternal
virtual
?
T
System.Collections.Generic.SortedSet
<
T
>.MaxInternal
get
package
inherited
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
}
System.Collections.Generic.SortedSet.Node.Right
Node Right
Definition
SortedSet.cs:20
System.Collections.Generic.SortedSet.Node.Item
T Item
Definition
SortedSet.cs:16
System.Collections.Generic.SortedSet.root
Node root
Definition
SortedSet.cs:683
System.Xml.Schema.XmlTypeCode.Node
@ Node
System
Collections
Generic
TreeSet
Generated by
1.10.0