make this node the same color as another @param node the node whose color we're adopting @param index _KEY or _VALUE
(Node node, int index)
| 2023 | * @param index _KEY or _VALUE |
| 2024 | */ |
| 2025 | public void copyColor(Node node, int index) |
| 2026 | { |
| 2027 | _black[ index ] = node._black[ index ]; |
| 2028 | } |
| 2029 | |
| 2030 | /* ********** START implementation of Map.Entry ********** */ |
| 2031 |