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