isValidEntry method

bool isValidEntry(
  1. Node key,
  2. V value
)
inherited

Returns true if key is valid (in the tree).

Implementation

bool isValidEntry(K key, V value) {
  return isInTree(key);
}