* continues.
* @return <tt>false</tt> if the procedure stopped before all keys where iterated over, <tt>true</tt> otherwise.
*/
public boolean forEachPair(final LongObjectProcedure<T> procedure) {
return forEachKey(
new LongProcedure() {
@Override
public boolean apply(long key) {
return procedure.apply(key, get(key));
}
}