isValidEntry method
Returns true
if key
is valid (in the tree).
Implementation
bool isValidEntry(K key, V value) {
return isInTree(key);
}
Returns true
if key
is valid (in the tree).
bool isValidEntry(K key, V value) {
return isInTree(key);
}