282283284285286287288289290291292
public ImmutableByteShortMap newWithoutKey(byte key) { MutableByteShortMap map = new ByteShortHashMap(this.size()); map.putAll(this); map.removeKey(key); return map.toImmutable(); } public ImmutableByteShortMap newWithoutAllKeys(ByteIterable keys) {
293294295296297298299300301302303
MutableByteShortMap map = new ByteShortHashMap(this.size()); map.putAll(this); ByteIterator iterator = keys.byteIterator(); while (iterator.hasNext()) { map.removeKey(iterator.next()); } return map.toImmutable(); } public int size()