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

◆ InsertAt()

int System.Data.RBTree< K >.InsertAt ( int position,
K item,
bool append )
inline

Definition at line 1262 of file RBTree.cs.

1263 {
1264 int newNode = GetNewNode(item);
1265 RBInsert(0, newNode, 0, position, append);
1266 return newNode;
1267 }
int GetNewNode(K key)
Definition RBTree.cs:384
int RBInsert(int root_id, int x_id, int mainTreeNodeID, int position, bool append)
Definition RBTree.cs:542

References System.Data.RBTree< K >.GetNewNode(), System.item, and System.Data.RBTree< K >.RBInsert().

Referenced by System.Data.Index.InitRecords(), System.Data.RBTree< K >.Insert(), and System.Data.Index.InsertRecord().