com.koloboke.collect.impl.hash.UpdatableLHashSeparateKVFloatKeyMap 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.FloatConsumer;
import com.koloboke.function.FloatPredicate;
import java.util.function.Consumer;
import java.util.function.Predicate;
import com.koloboke.collect.impl.*;
import com.koloboke.collect.set.FloatSet;
import com.koloboke.collect.set.hash.HashFloatSet;
import javax.annotation.Nonnull;
import java.util.*;
public abstract class UpdatableLHashSeparateKVFloatKeyMap
extends UpdatableSeparateKVFloatLHashGO {
public final boolean containsKey(Object key) {
return contains(key);
}
public boolean containsKey(float key) {
return contains(key);
}
@Nonnull
public HashFloatSet keySet() {
return new KeyView();
}
abstract boolean justRemove(float key);
@Override
abstract boolean justRemove(int key);
class KeyView extends AbstractFloatKeyView
implements HashFloatSet, InternalFloatCollectionOps, SeparateKVFloatLHash {
@Nonnull
@Override
public HashConfig hashConfig() {
return UpdatableLHashSeparateKVFloatKeyMap.this.hashConfig();
}
@Override
public HashConfigWrapper configWrapper() {
return UpdatableLHashSeparateKVFloatKeyMap.this.configWrapper();
}
@Override
public int size() {
return UpdatableLHashSeparateKVFloatKeyMap.this.size();
}
@Override
public double currentLoad() {
return UpdatableLHashSeparateKVFloatKeyMap.this.currentLoad();
}
@Nonnull
@Override
public int[] keys() {
return UpdatableLHashSeparateKVFloatKeyMap.this.keys();
}
@Override
public int capacity() {
return UpdatableLHashSeparateKVFloatKeyMap.this.capacity();
}
@Override
public int freeSlots() {
return UpdatableLHashSeparateKVFloatKeyMap.this.freeSlots();
}
@Override
public boolean noRemoved() {
return UpdatableLHashSeparateKVFloatKeyMap.this.noRemoved();
}
@Override
public int removedSlots() {
return UpdatableLHashSeparateKVFloatKeyMap.this.removedSlots();
}
@Override
public int modCount() {
return UpdatableLHashSeparateKVFloatKeyMap.this.modCount();
}
@Override
public final boolean contains(Object o) {
return UpdatableLHashSeparateKVFloatKeyMap.this.contains(o);
}
@Override
public boolean contains(float key) {
return UpdatableLHashSeparateKVFloatKeyMap.this.contains(key);
}
@Override
public boolean contains(int bits) {
return UpdatableLHashSeparateKVFloatKeyMap.this.contains(bits);
}
@Override
public void forEach(Consumer super Float> action) {
UpdatableLHashSeparateKVFloatKeyMap.this.forEach(action);
}
@Override
public void forEach(FloatConsumer action) {
UpdatableLHashSeparateKVFloatKeyMap.this.forEach(action);
}
@Override
public boolean forEachWhile(FloatPredicate
predicate) {
return UpdatableLHashSeparateKVFloatKeyMap.this.forEachWhile(predicate);
}
@Override
public boolean allContainingIn(FloatCollection c) {
return UpdatableLHashSeparateKVFloatKeyMap.this.allContainingIn(c);
}
@Override
public boolean reverseAddAllTo(FloatCollection c) {
return UpdatableLHashSeparateKVFloatKeyMap.this.reverseAddAllTo(c);
}
@Override
public boolean reverseRemoveAllFrom(FloatSet s) {
return UpdatableLHashSeparateKVFloatKeyMap.this.reverseRemoveAllFrom(s);
}
@Override
@Nonnull
public FloatIterator iterator() {
return UpdatableLHashSeparateKVFloatKeyMap.this.iterator();
}
@Override
@Nonnull
public FloatCursor cursor() {
return setCursor();
}
@Override
@Nonnull
public Object[] toArray() {
return UpdatableLHashSeparateKVFloatKeyMap.this.toArray();
}
@Override
@Nonnull
public T[] toArray(@Nonnull T[] a) {
return UpdatableLHashSeparateKVFloatKeyMap.this.toArray(a);
}
@Override
public float[] toFloatArray() {
return UpdatableLHashSeparateKVFloatKeyMap.this.toFloatArray();
}
@Override
public float[] toArray(float[] a) {
return UpdatableLHashSeparateKVFloatKeyMap.this.toArray(a);
}
@Override
public int hashCode() {
return setHashCode();
}
@Override
public String toString() {
return setToString();
}
@Override
public boolean shrink() {
return UpdatableLHashSeparateKVFloatKeyMap.this.shrink();
}
@Override
public final boolean remove(Object o) {
return justRemove((Float) o);
}
@Override
public boolean removeFloat(float v) {
return justRemove(v);
}
@Override
public boolean removeFloat(int bits) {
return justRemove(bits);
}
@Override
public boolean removeIf(Predicate super Float> filter) {
return UpdatableLHashSeparateKVFloatKeyMap.this.removeIf(filter);
}
@Override
public boolean removeIf(FloatPredicate filter) {
return UpdatableLHashSeparateKVFloatKeyMap.this.removeIf(filter);
}
@Override
public boolean removeAll(@Nonnull Collection> c) {
if (c instanceof FloatCollection) {
if (c instanceof InternalFloatCollectionOps) {
InternalFloatCollectionOps c2 = (InternalFloatCollectionOps) c;
if (c2.size() < this.size()) {
return c2.reverseRemoveAllFrom(this);
}
}
return UpdatableLHashSeparateKVFloatKeyMap.this.removeAll(this, (FloatCollection) c);
}
return UpdatableLHashSeparateKVFloatKeyMap.this.removeAll(this, c);
}
@Override
public boolean retainAll(@Nonnull Collection> c) {
return UpdatableLHashSeparateKVFloatKeyMap.this.retainAll(this, c);
}
@Override
public void clear() {
UpdatableLHashSeparateKVFloatKeyMap.this.clear();
}
}
}