IntShortHashMap.this.clear();
}
public MutableIntSet select(IntPredicate predicate)
{
MutableIntSet result = new IntHashSet();
if (IntShortHashMap.this.sentinelValues != null)
{
if (IntShortHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
result.add(EMPTY_KEY);
}
if (IntShortHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
result.add(REMOVED_KEY);
}
}
for (int key : IntShortHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
result.add(key);
}
}
return result;
}