com.koloboke.collect.impl.hash.ImmutableQHashParallelKVCharKeyMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of koloboke-impl-jdk8 Show documentation
Show all versions of koloboke-impl-jdk8 Show documentation
Carefully designed and efficient extension of the Java Collections Framework with primitive specializations and more, built for Java 8 (Implementation)
The newest version!
/*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.koloboke.collect.impl.hash;
import com.koloboke.collect.*;
import com.koloboke.collect.hash.HashConfig;
import com.koloboke.function.CharConsumer;
import com.koloboke.function.CharPredicate;
import java.util.function.Consumer;
import java.util.function.Predicate;
import com.koloboke.collect.impl.*;
import com.koloboke.collect.set.CharSet;
import com.koloboke.collect.set.hash.HashCharSet;
import javax.annotation.Nonnull;
import java.util.*;
public abstract class ImmutableQHashParallelKVCharKeyMap
extends ImmutableParallelKVCharQHashGO {
public final boolean containsKey(Object key) {
return contains(key);
}
public boolean containsKey(char key) {
return contains(key);
}
@Nonnull
public HashCharSet keySet() {
return new KeyView();
}
abstract boolean justRemove(char key);
class KeyView extends AbstractCharKeyView
implements HashCharSet, InternalCharCollectionOps, ParallelKVCharQHash {
@Nonnull
@Override
public HashConfig hashConfig() {
return ImmutableQHashParallelKVCharKeyMap.this.hashConfig();
}
@Override
public HashConfigWrapper configWrapper() {
return ImmutableQHashParallelKVCharKeyMap.this.configWrapper();
}
@Override
public int size() {
return ImmutableQHashParallelKVCharKeyMap.this.size();
}
@Override
public double currentLoad() {
return ImmutableQHashParallelKVCharKeyMap.this.currentLoad();
}
@Override
public char freeValue() {
return ImmutableQHashParallelKVCharKeyMap.this.freeValue();
}
@Override
public boolean supportRemoved() {
return ImmutableQHashParallelKVCharKeyMap.this.supportRemoved();
}
@Override
public char removedValue() {
return ImmutableQHashParallelKVCharKeyMap.this.removedValue();
}
@Nonnull
@Override
public int[] table() {
return ImmutableQHashParallelKVCharKeyMap.this.table();
}
@Override
public int capacity() {
return ImmutableQHashParallelKVCharKeyMap.this.capacity();
}
@Override
public int freeSlots() {
return ImmutableQHashParallelKVCharKeyMap.this.freeSlots();
}
@Override
public boolean noRemoved() {
return ImmutableQHashParallelKVCharKeyMap.this.noRemoved();
}
@Override
public int removedSlots() {
return ImmutableQHashParallelKVCharKeyMap.this.removedSlots();
}
@Override
public int modCount() {
// not calling outer class modCount() to let Compile remove outer that method
// if never used elsewhere
return 0;
}
@Override
public final boolean contains(Object o) {
return ImmutableQHashParallelKVCharKeyMap.this.contains(o);
}
@Override
public boolean contains(char key) {
return ImmutableQHashParallelKVCharKeyMap.this.contains(key);
}
@Override
public void forEach(Consumer super Character> action) {
ImmutableQHashParallelKVCharKeyMap.this.forEach(action);
}
@Override
public void forEach(CharConsumer action) {
ImmutableQHashParallelKVCharKeyMap.this.forEach(action);
}
@Override
public boolean forEachWhile(CharPredicate
predicate) {
return ImmutableQHashParallelKVCharKeyMap.this.forEachWhile(predicate);
}
@Override
public boolean allContainingIn(CharCollection c) {
return ImmutableQHashParallelKVCharKeyMap.this.allContainingIn(c);
}
@Override
public boolean reverseAddAllTo(CharCollection c) {
return ImmutableQHashParallelKVCharKeyMap.this.reverseAddAllTo(c);
}
@Override
public boolean reverseRemoveAllFrom(CharSet s) {
return ImmutableQHashParallelKVCharKeyMap.this.reverseRemoveAllFrom(s);
}
@Override
@Nonnull
public CharIterator iterator() {
return ImmutableQHashParallelKVCharKeyMap.this.iterator();
}
@Override
@Nonnull
public CharCursor cursor() {
return setCursor();
}
@Override
@Nonnull
public Object[] toArray() {
return ImmutableQHashParallelKVCharKeyMap.this.toArray();
}
@Override
@Nonnull
public T[] toArray(@Nonnull T[] a) {
return ImmutableQHashParallelKVCharKeyMap.this.toArray(a);
}
@Override
public char[] toCharArray() {
return ImmutableQHashParallelKVCharKeyMap.this.toCharArray();
}
@Override
public char[] toArray(char[] a) {
return ImmutableQHashParallelKVCharKeyMap.this.toArray(a);
}
@Override
public int hashCode() {
return setHashCode();
}
@Override
public String toString() {
return setToString();
}
@Override
public boolean shrink() {
return ImmutableQHashParallelKVCharKeyMap.this.shrink();
}
@Override
public final boolean remove(Object o) {
return justRemove((Character) o);
}
@Override
public boolean removeChar(char v) {
return justRemove(v);
}
@Override
public boolean removeIf(Predicate super Character> filter) {
return ImmutableQHashParallelKVCharKeyMap.this.removeIf(filter);
}
@Override
public boolean removeIf(CharPredicate filter) {
return ImmutableQHashParallelKVCharKeyMap.this.removeIf(filter);
}
@Override
public boolean removeAll(@Nonnull Collection> c) {
if (c instanceof CharCollection) {
if (c instanceof InternalCharCollectionOps) {
InternalCharCollectionOps c2 = (InternalCharCollectionOps) c;
if (c2.size() < this.size()) {
return c2.reverseRemoveAllFrom(this);
}
}
return ImmutableQHashParallelKVCharKeyMap.this.removeAll(this, (CharCollection) c);
}
return ImmutableQHashParallelKVCharKeyMap.this.removeAll(this, c);
}
@Override
public boolean retainAll(@Nonnull Collection> c) {
return ImmutableQHashParallelKVCharKeyMap.this.retainAll(this, c);
}
@Override
public void clear() {
ImmutableQHashParallelKVCharKeyMap.this.clear();
}
}
}