public boolean forEach()

in core/src/main/java/gnu/trove/TIntHash.java [153:164]


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