public boolean forEachValue()

in core/src/main/java/gnu/trove/TIntIntHashMap.java [399:410]


  public boolean forEachValue(TIntProcedure procedure) {
    byte[] states = _states;
    int[] values = _values;
    if (states != null) {
      for (int i = states.length; i-- > 0; ) {
        if (states[i] == FULL && !procedure.execute(values[i])) {
          return false;
        }
      }
    }
    return true;
  }