282283284285286287288289290291292
public ImmutableCharShortMap newWithoutKey(char key) { MutableCharShortMap map = new CharShortHashMap(this.size()); map.putAll(this); map.removeKey(key); return map.toImmutable(); } public ImmutableCharShortMap newWithoutAllKeys(CharIterable keys) {
293294295296297298299300301302303
MutableCharShortMap map = new CharShortHashMap(this.size()); map.putAll(this); CharIterator iterator = keys.charIterator(); while (iterator.hasNext()) { map.removeKey(iterator.next()); } return map.toImmutable(); } public int size()