bool anyKey(Predicate<K> p) { final it = entries.iterator; while (it.moveNext()) { if (p(it.current.key)) { return true; } } return false; }