is the specified black red? if the node does not exist, sure, it's black, thank you @param node the node (may be null) in question @param index _KEY or _VALUE
(Node node, int index)
| 608 | * @param index _KEY or _VALUE |
| 609 | */ |
| 610 | private static boolean isBlack(Node node, int index) |
| 611 | { |
| 612 | return node == null ? true : node.isBlack(index); |
| 613 | } |
| 614 | |
| 615 | /** |
| 616 | * force a node (if it exists) red |
no test coverage detected