3 instantiations of NodePath
System.Data (3)
fx\src\data\System\Data\RbTree.cs (3)
1246
return new
NodePath
(SearchSubTree(Next(nodeId), key), nodeId);
1251
return new
NodePath
(nodeId, NIL);
1413
return new
NodePath
(x_id, satelliteRootId);
6 references to NodePath
System.Data (6)
fx\src\data\System\Data\RbTree.cs (6)
777
NodePath
x_id = GetNodeByKey (currentKey);
799
NodePath
x_id = GetNodeByIndex(i); // it'l throw if corresponding node does not exist
1242
private
NodePath
GetNodeByKey(K key) //i.e. GetNodeByKey
1261
NodePath
nodeId = GetNodeByKey (key);
1330
private int GetIndexByNodePath(
NodePath
path)
1389
private
NodePath
GetNodeByIndex(int userIndex)