get the left node @param index _KEY or _VALUE @return the left node -- may be null
(int index)
| 1906 | */ |
| 1907 | |
| 1908 | public Node getLeft(int index) |
| 1909 | { |
| 1910 | return _left[ index ]; |
| 1911 | } |
| 1912 | |
| 1913 | /** |
| 1914 | * Set this node's right node |
no outgoing calls
no test coverage detected