/** * Executes <tt>procedure</tt> for each key/value entry in the map. * * @param procedure a <code>TOLongObjectProcedure</code> value * @return false if the loop over the entries terminated because the procedure returned false for * some entry. */ public boolean forEachEntry(TLongObjectProcedure<V> procedure) { byte[] states = _states; long[] keys = _set; V[] values = _values; for (int i = keys.length; i-- > 0; ) { if (states[i] == FULL && !procedure.execute(keys[i], values[i])) { return false; } } return true; }
/** * Retains only those entries in the map for which the procedure returns a true value. * * @param procedure determines which entries to keep * @return true if the map was modified. */ public boolean retainEntries(TLongObjectProcedure<V> procedure) { boolean modified = false; byte[] states = _states; long[] keys = _set; V[] values = _values; // Temporarily disable compaction. This is a fix for bug #1738760 tempDisableAutoCompaction(); try { for (int i = keys.length; i-- > 0; ) { if (states[i] == FULL && !procedure.execute(keys[i], values[i])) { removeAt(i); modified = true; } } } finally { reenableAutoCompaction(true); } return modified; }