in core/src/main/java/gnu/trove/TLongIntHashMap.java [403:415]
public boolean forEachEntry(TLongIntProcedure procedure) {
byte[] states = _states;
long[] keys = _set;
int[] values = _values;
if (states != null) {
for (int i = states.length; i-- > 0; ) {
if (states[i] == FULL && !procedure.execute(keys[i], values[i])) {
return false;
}
}
}
return true;
}