is this node black? @param index _KEY or _VALUE @return true if black (which is represented as a true boolean)
(int index)
| 1980 | * @return true if black (which is represented as a true boolean) |
| 1981 | */ |
| 1982 | public boolean isBlack(int index) |
| 1983 | { |
| 1984 | return _black[ index ]; |
| 1985 | } |
| 1986 | |
| 1987 | /** |
| 1988 | * is this node red? |