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