public ImmutableCharBooleanMap newWithoutAllKeys(CharIterable keys)
{
MutableCharBooleanMap map = new CharBooleanHashMap(this.size());
map.putAll(this);
CharIterator iterator = keys.charIterator();
while (iterator.hasNext())
{
map.removeKey(iterator.next());
}
return map.toImmutable();
}