282283284285286287288289290291292
public ImmutableLongCharMap newWithoutKey(long key) { MutableLongCharMap map = new LongCharHashMap(this.size()); map.putAll(this); map.removeKey(key); return map.toImmutable(); } public ImmutableLongCharMap newWithoutAllKeys(LongIterable keys) {
293294295296297298299300301302303
MutableLongCharMap map = new LongCharHashMap(this.size()); map.putAll(this); LongIterator iterator = keys.longIterator(); while (iterator.hasNext()) { map.removeKey(iterator.next()); } return map.toImmutable(); } public int size()