Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IBinaryTree.cs
Go to the documentation of this file.
1
namespace
System.Collections.Immutable
;
2
3
internal
interface
IBinaryTree
4
{
5
int
Height
{
get
; }
6
7
bool
IsEmpty
{
get
; }
8
9
int
Count
{
get
; }
10
11
IBinaryTree
?
Left
{
get
; }
12
13
IBinaryTree
?
Right
{
get
; }
14
}
15
internal
interface
IBinaryTree
<out T> :
IBinaryTree
16
{
17
T
Value
{
get
; }
18
19
new
IBinaryTree<T>
?
Left
{
get
; }
20
21
new
IBinaryTree<T>
?
Right
{
get
; }
22
}
IBinaryTree
System.Collections.Immutable.IBinaryTree.Count
int Count
Definition
IBinaryTree.cs:9
System.Collections.Immutable.IBinaryTree.Height
int Height
Definition
IBinaryTree.cs:5
System.Collections.Immutable.IBinaryTree.Right
IBinaryTree? Right
Definition
IBinaryTree.cs:13
System.Collections.Immutable.IBinaryTree.Left
IBinaryTree? Left
Definition
IBinaryTree.cs:11
System.Collections.Immutable.IBinaryTree.Value
T Value
Definition
IBinaryTree.cs:17
System.Collections.Immutable.IBinaryTree.IsEmpty
bool IsEmpty
Definition
IBinaryTree.cs:7
System.Collections.Immutable.IBinaryTree
Definition
IBinaryTree.cs:16
System.Collections.Immutable
Definition
AllocFreeConcurrentStack.cs:4
source
System.Collections.Immutable
System.Collections.Immutable
IBinaryTree.cs
Generated by
1.10.0