282283284285286287288289290291292
public ImmutableFloatShortMap newWithoutKey(float key) { MutableFloatShortMap map = new FloatShortHashMap(this.size()); map.putAll(this); map.removeKey(key); return map.toImmutable(); } public ImmutableFloatShortMap newWithoutAllKeys(FloatIterable keys) {
293294295296297298299300301302303
MutableFloatShortMap map = new FloatShortHashMap(this.size()); map.putAll(this); FloatIterator iterator = keys.floatIterator(); while (iterator.hasNext()) { map.removeKey(iterator.next()); } return map.toImmutable(); } public int size()