anyValue method

bool anyValue(
  1. Predicate<V> p
)

Implementation

bool anyValue(Predicate<V> p) {
  final it = entries.iterator;
  while (it.moveNext()) {
    if (p(it.current.value)) {
      return true;
    }
  }

  return false;
}