329330331332333334335336337338339340341342
} }); } else { IntIterator iterator = source.intIterator(); while (iterator.hasNext()) { int each = iterator.next(); int occurrences = this.items.removeKeyIfAbsent(each, 0); this.size -= occurrences; } } return this.size() != oldSize;
2506250725082509251025112512251325142515251625172518
return this; } public MutableIntObjectMap<V> withoutAllKeys(IntIterable keys) { IntIterator iterator = keys.intIterator(); while (iterator.hasNext()) { int item = iterator.next(); this.removeKey(item); } return this; }
297729782979298029812982298329842985298629872988
} public boolean removeAll(IntIterable source) { int oldSize = IntObjectHashMap.this.size(); IntIterator iterator = source.intIterator(); while (iterator.hasNext()) { IntObjectHashMap.this.removeKey(iterator.next()); } return oldSize != IntObjectHashMap.this.size(); }
33393340334133423343334433453346334733483349335033513352
return true; } public boolean containsAll(IntIterable source) { IntIterator iterator = source.intIterator(); while (iterator.hasNext()) { if (!IntObjectHashMap.this.containsKey(iterator.next())) { return false; } } return true;
290291292293294295296297298299300301
public ImmutableIntCharMap newWithoutAllKeys(IntIterable keys) { MutableIntCharMap map = new IntCharHashMap(this.size()); map.putAll(this); IntIterator iterator = keys.intIterator(); while (iterator.hasNext()) { map.removeKey(iterator.next()); } return map.toImmutable(); }
public ImmutableIntShortMap newWithoutAllKeys(IntIterable keys) { MutableIntShortMap map = new IntShortHashMap(this.size()); map.putAll(this); IntIterator iterator = keys.intIterator(); while (iterator.hasNext()) { map.removeKey(iterator.next()); } return map.toImmutable(); }
public ImmutableIntLongMap newWithoutAllKeys(IntIterable keys) { MutableIntLongMap map = new IntLongHashMap(this.size()); map.putAll(this); IntIterator iterator = keys.intIterator(); while (iterator.hasNext()) { map.removeKey(iterator.next()); } return map.toImmutable(); }
214521462147214821492150215121522153215421552156
} public boolean removeAll(IntIterable source) { int oldSize = IntBooleanHashMap.this.size(); IntIterator iterator = source.intIterator(); while (iterator.hasNext()) { IntBooleanHashMap.this.removeKey(iterator.next()); } return oldSize != IntBooleanHashMap.this.size(); }
25072508250925102511251225132514251525162517251825192520
return true; } public boolean containsAll(IntIterable source) { IntIterator iterator = source.intIterator(); while (iterator.hasNext()) { if (!IntBooleanHashMap.this.containsKey(iterator.next())) { return false; } } return true;
public ImmutableIntFloatMap newWithoutAllKeys(IntIterable keys) { MutableIntFloatMap map = new IntFloatHashMap(this.size()); map.putAll(this); IntIterator iterator = keys.intIterator(); while (iterator.hasNext()) { map.removeKey(iterator.next()); } return map.toImmutable(); }