Exemplo n.º 1
0
 public static IBinaryNode GetPrevious(this IBinaryNode current) => current.GetNeighborNode(true);
Exemplo n.º 2
0
 public static IBinaryNode GetNext(this IBinaryNode current) => current.GetNeighborNode(false);