get a node's left child. mind you, the node may not exist. no problem @param node the node (may be null) in question @param index _KEY or _VALUE
(Node node, int index)
| 686 | * @param index _KEY or _VALUE |
| 687 | */ |
| 688 | private static Node getLeftChild(Node node, int index) |
| 689 | { |
| 690 | return (node == null) ? null |
| 691 | : node.getLeft(index); |
| 692 | } |
| 693 | |
| 694 | /** |
| 695 | * is this node its parent's left child? mind you, the node, or |
no test coverage detected