com.koloboke.collect.impl.hash.ImmutableQHashSeparateKVByteFloatMapGO 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.collect.impl.*;
import com.koloboke.collect.map.*;
import com.koloboke.collect.map.hash.*;
import com.koloboke.collect.set.*;
import com.koloboke.collect.set.hash.*;
import java.util.function.BiConsumer;
import java.util.function.BiFunction;
import com.koloboke.function.BytePredicate;
import com.koloboke.function.ByteFloatConsumer;
import com.koloboke.function.ByteFloatPredicate;
import com.koloboke.function.ByteFloatToFloatFunction;
import com.koloboke.function.ByteToFloatFunction;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.function.Predicate;
import com.koloboke.function.FloatBinaryOperator;
import com.koloboke.function.FloatConsumer;
import com.koloboke.function.FloatPredicate;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import javax.annotation.Nonnull;
import java.util.*;
public class ImmutableQHashSeparateKVByteFloatMapGO
extends ImmutableQHashSeparateKVByteFloatMapSO {
@Override
final void copy(SeparateKVByteFloatQHash hash) {
int
hashMC = hash.modCount();
super.copy(hash);
if (
hashMC != hash.modCount())
throw new ConcurrentModificationException();
}
@Override
final void move(SeparateKVByteFloatQHash hash) {
int
hashMC = hash.modCount();
super.move(hash);
if (
hashMC != hash.modCount())
throw new ConcurrentModificationException();
}
@Override
public float defaultValue() {
return 0.0f;
}
@Override
public boolean containsEntry(byte key, float value) {
int index = index(key);
if (index >= 0) {
// key is present
return values[index] == Float.floatToIntBits(value);
} else {
// key is absent
return false;
}
}
@Override
public boolean containsEntry(byte key, int value) {
int index = index(key);
if (index >= 0) {
// key is present
return values[index] == value;
} else {
// key is absent
return false;
}
}
@Override
public Float get(Object key) {
int index = index((Byte) key);
if (index >= 0) {
// key is present
return Float.intBitsToFloat(values[index]);
} else {
// key is absent
return null;
}
}
@Override
public float get(byte key) {
int index = index(key);
if (index >= 0) {
// key is present
return Float.intBitsToFloat(values[index]);
} else {
// key is absent
return defaultValue();
}
}
@Override
public Float getOrDefault(Object key, Float defaultValue) {
int index = index((Byte) key);
if (index >= 0) {
// key is present
return Float.intBitsToFloat(values[index]);
} else {
// key is absent
return defaultValue;
}
}
@Override
public float getOrDefault(byte key, float defaultValue) {
int index = index(key);
if (index >= 0) {
// key is present
return Float.intBitsToFloat(values[index]);
} else {
// key is absent
return defaultValue;
}
}
@Override
public void forEach(BiConsumer super Byte, ? super Float> action) {
if (action == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
action.accept(key, Float.intBitsToFloat(vals[i]));
}
}
}
@Override
public void forEach(ByteFloatConsumer action) {
if (action == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
action.accept(key, Float.intBitsToFloat(vals[i]));
}
}
}
@Override
public boolean forEachWhile(ByteFloatPredicate predicate) {
if (predicate == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return true;
boolean terminated = false;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
if (!predicate.test(key, Float.intBitsToFloat(vals[i]))) {
terminated = true;
break;
}
}
}
return !terminated;
}
@Nonnull
@Override
public ByteFloatCursor cursor() {
return new NoRemovedMapCursor();
}
@SuppressWarnings("unchecked")
@Override
public boolean containsAllEntries(Map, ?> m) {
return CommonByteFloatMapOps.containsAllEntries(this, m);
}
@Override
public boolean allEntriesContainingIn(InternalByteFloatMapOps m) {
if (this.isEmpty())
return true;
boolean containsAll = true;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
if (!m.containsEntry(key, vals[i])) {
containsAll = false;
break;
}
}
}
return containsAll;
}
@Override
public void reversePutAllTo(InternalByteFloatMapOps m) {
if (this.isEmpty())
return;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
m.justPut(key, vals[i]);
}
}
}
@Override
@Nonnull
public HashObjSet> entrySet() {
return new EntryView();
}
@Override
@Nonnull
public FloatCollection values() {
return new ValueView();
}
@Override
public boolean equals(Object o) {
return CommonMapOps.equals(this, o);
}
@Override
public int hashCode() {
int hashCode = 0;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
hashCode += key ^ vals[i];
}
}
return hashCode;
}
@Override
public String toString() {
if (this.isEmpty())
return "{}";
StringBuilder sb = new StringBuilder();
int elementCount = 0;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
sb.append(' ');
sb.append(key);
sb.append('=');
sb.append(Float.intBitsToFloat(vals[i]));
sb.append(',');
if (++elementCount == 8) {
int expectedLength = sb.length() * (size() / 8);
sb.ensureCapacity(expectedLength + (expectedLength / 2));
}
}
}
sb.setCharAt(0, '{');
sb.setCharAt(sb.length() - 1, '}');
return sb.toString();
}
@Override
public Float put(Byte key, Float value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public float put(byte key, float value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public Float putIfAbsent(Byte key, Float value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public float putIfAbsent(byte key, float value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public void justPut(byte key, float value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public void justPut(byte key, int value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public Float compute(Byte key,
BiFunction super Byte, ? super Float, ? extends Float> remappingFunction) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public float compute(byte key, ByteFloatToFloatFunction remappingFunction) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public Float computeIfAbsent(Byte key,
Function super Byte, ? extends Float> mappingFunction) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public float computeIfAbsent(byte key, ByteToFloatFunction mappingFunction) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public Float computeIfPresent(Byte key,
BiFunction super Byte, ? super Float, ? extends Float> remappingFunction) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public float computeIfPresent(byte key, ByteFloatToFloatFunction remappingFunction) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public Float merge(Byte key, Float value,
BiFunction super Float, ? super Float, ? extends Float> remappingFunction) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public float merge(byte key, float value, FloatBinaryOperator remappingFunction) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public float addValue(byte key, float value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public float addValue(byte key, float addition, float initialValue) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public void putAll(@Nonnull Map extends Byte, ? extends Float> m) {
CommonByteFloatMapOps.putAll(this, m);
}
@Override
public Float replace(Byte key, Float value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public float replace(byte key, float value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public boolean replace(Byte key, Float oldValue, Float newValue) {
return replace(key.byteValue(),
oldValue.floatValue(),
newValue.floatValue());
}
@Override
public boolean replace(byte key, float oldValue, float newValue) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public void replaceAll(
BiFunction super Byte, ? super Float, ? extends Float> function) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public void replaceAll(ByteFloatToFloatFunction function) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public Float remove(Object key) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public boolean justRemove(byte key) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public float remove(byte key) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public boolean remove(Object key, Object value) {
return remove(((Byte) key).byteValue(),
((Float) value).floatValue()
);
}
@Override
public boolean remove(byte key, float value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public boolean removeIf(ByteFloatPredicate filter) {
throw new java.lang.UnsupportedOperationException();
}
class EntryView extends AbstractSetView>
implements HashObjSet>,
InternalObjCollectionOps> {
@Nonnull
@Override
public Equivalence> equivalence() {
return Equivalence.entryEquivalence(
Equivalence.defaultEquality()
,
Equivalence.defaultEquality()
);
}
@Nonnull
@Override
public HashConfig hashConfig() {
return ImmutableQHashSeparateKVByteFloatMapGO.this.hashConfig();
}
@Override
public int size() {
// Read field instead of calling size() to avoid infinite recursive calls in Koloboke
// Compile-generated map, if it extends AbstractMap
return size;
}
@Override
public double currentLoad() {
return ImmutableQHashSeparateKVByteFloatMapGO.this.currentLoad();
}
@Override
@SuppressWarnings("unchecked")
public boolean contains(Object o) {
try {
Map.Entry e = (Map.Entry) o;
return containsEntry(e.getKey(), e.getValue());
} catch (NullPointerException e) {
return false;
} catch (ClassCastException e) {
return false;
}
}
@Override
@Nonnull
public final Object[] toArray() {
int size = size();
Object[] result = new Object[size];
if (size == 0)
return result;
int resultIndex = 0;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
result[resultIndex++] = new ImmutableEntry(key, vals[i]);
}
}
return result;
}
@Override
@SuppressWarnings("unchecked")
@Nonnull
public final T[] toArray(@Nonnull T[] a) {
int size = size();
if (a.length < size) {
Class> elementType = a.getClass().getComponentType();
a = (T[]) java.lang.reflect.Array.newInstance(elementType, size);
}
if (size == 0) {
if (a.length > 0)
a[0] = null;
return a;
}
int resultIndex = 0;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
a[resultIndex++] = (T) new ImmutableEntry(key, vals[i]);
}
}
if (a.length > resultIndex)
a[resultIndex] = null;
return a;
}
@Override
public final void forEach(@Nonnull Consumer super Map.Entry> action) {
if (action == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
action.accept(new ImmutableEntry(key, vals[i]));
}
}
}
@Override
public boolean forEachWhile(@Nonnull Predicate super Map.Entry> predicate) {
if (predicate == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return true;
boolean terminated = false;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
if (!predicate.test(new ImmutableEntry(key, vals[i]))) {
terminated = true;
break;
}
}
}
return !terminated;
}
@Override
@Nonnull
public ObjIterator> iterator() {
return new NoRemovedEntryIterator(
);
}
@Nonnull
@Override
public ObjCursor> cursor() {
return new NoRemovedEntryCursor(
);
}
@Override
public final boolean containsAll(@Nonnull Collection> c) {
return CommonObjCollectionOps.containsAll(this, c);
}
@Override
public final boolean allContainingIn(ObjCollection> c) {
if (this.isEmpty())
return true;
boolean containsAll = true;
ReusableEntry e = new ReusableEntry();
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
if (!c.contains(e.with(key, vals[i]))) {
containsAll = false;
break;
}
}
}
return containsAll;
}
@Override
public boolean reverseRemoveAllFrom(ObjSet> s) {
if (this.isEmpty() || s.isEmpty())
return false;
boolean changed = false;
ReusableEntry e = new ReusableEntry();
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
changed |= s.remove(e.with(key, vals[i]));
}
}
return changed;
}
@Override
public final boolean reverseAddAllTo(ObjCollection super Map.Entry> c) {
if (this.isEmpty())
return false;
boolean changed = false;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
changed |= c.add(new ImmutableEntry(key, vals[i]));
}
}
return changed;
}
public int hashCode() {
return ImmutableQHashSeparateKVByteFloatMapGO.this.hashCode();
}
@Override
public String toString() {
if (this.isEmpty())
return "[]";
StringBuilder sb = new StringBuilder();
int elementCount = 0;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
sb.append(' ');
sb.append(key);
sb.append('=');
sb.append(Float.intBitsToFloat(vals[i]));
sb.append(',');
if (++elementCount == 8) {
int expectedLength = sb.length() * (size() / 8);
sb.ensureCapacity(expectedLength + (expectedLength / 2));
}
}
}
sb.setCharAt(0, '[');
sb.setCharAt(sb.length() - 1, ']');
return sb.toString();
}
@Override
public boolean shrink() {
return ImmutableQHashSeparateKVByteFloatMapGO.this.shrink();
}
@Override
@SuppressWarnings("unchecked")
public boolean remove(Object o) {
try {
Map.Entry e = (Map.Entry) o;
byte key = e.getKey();
float value = e.getValue();
return ImmutableQHashSeparateKVByteFloatMapGO.this.remove(key, value);
} catch (NullPointerException e) {
return false;
} catch (ClassCastException e) {
return false;
}
}
@Override
public final boolean removeIf(@Nonnull Predicate super Map.Entry> filter) {
throw new java.lang.UnsupportedOperationException();
}
@SuppressWarnings("unchecked")
@Override
public final boolean removeAll(@Nonnull Collection> c) {
if (c instanceof InternalObjCollectionOps) {
InternalObjCollectionOps c2 = (InternalObjCollectionOps) c;
if (equivalence().equals(c2.equivalence()) && c2.size() < this.size()) {
c2.reverseRemoveAllFrom(this);
}
}
throw new java.lang.UnsupportedOperationException();
}
@Override
public final boolean retainAll(@Nonnull Collection> c) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public void clear() {
// Don't call map.clear() directly to avoid infinite recursive calls in Koloboke
// Compile-generated map, if it extends AbstractMap
throw new UnsupportedOperationException();
}
}
abstract class ByteFloatEntry extends AbstractEntry {
abstract byte key();
@Override
public final Byte getKey() {
return key();
}
abstract int value();
@Override
public final Float getValue() {
return Float.intBitsToFloat(value());
}
@SuppressWarnings("unchecked")
@Override
public boolean equals(Object o) {
Map.Entry e2;
byte k2;
int v2;
try {
e2 = (Map.Entry) o;
k2 = (Byte) e2.getKey();
v2 = Float.floatToIntBits((Float) e2.getValue());
return key() == k2
&&
value() == v2
;
} catch (ClassCastException e) {
return false;
} catch (NullPointerException e) {
return false;
}
}
@Override
public int hashCode() {
return Primitives.hashCode(key())
^
Primitives.hashCode(value())
;
}
}
private class ImmutableEntry extends ByteFloatEntry {
private final byte key;
private final int value;
ImmutableEntry(byte key, int value) {
this.key = key;
this.value = value;
}
@Override
public byte key() {
return key;
}
@Override
public int value() {
return value;
}
}
class ReusableEntry extends ByteFloatEntry {
private byte key;
private int value;
ReusableEntry with(byte key, int value) {
this.key = key;
this.value = value;
return this;
}
@Override
public byte key() {
return key;
}
@Override
public int value() {
return value;
}
}
class ValueView extends AbstractFloatValueView {
@Override
public int size() {
return ImmutableQHashSeparateKVByteFloatMapGO.this.size();
}
@Override
public boolean shrink() {
return ImmutableQHashSeparateKVByteFloatMapGO.this.shrink();
}
@Override
public boolean contains(Object o) {
return ImmutableQHashSeparateKVByteFloatMapGO.this.containsValue(o);
}
@Override
public boolean contains(float v) {
return ImmutableQHashSeparateKVByteFloatMapGO.this.containsValue(v);
}
@Override
public boolean contains(int bits) {
return ImmutableQHashSeparateKVByteFloatMapGO.this.containsValue(bits);
}
@Override
public void forEach(Consumer super Float> action) {
if (action == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
action.accept(Float.intBitsToFloat(vals[i]));
}
}
}
@Override
public void forEach(FloatConsumer action) {
if (action == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
action.accept(Float.intBitsToFloat(vals[i]));
}
}
}
@Override
public boolean forEachWhile(FloatPredicate predicate) {
if (predicate == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return true;
boolean terminated = false;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
if (!predicate.test(Float.intBitsToFloat(vals[i]))) {
terminated = true;
break;
}
}
}
return !terminated;
}
@Override
public boolean allContainingIn(FloatCollection c) {
if (c instanceof InternalFloatCollectionOps)
return allContainingIn((InternalFloatCollectionOps) c);
if (this.isEmpty())
return true;
boolean containsAll = true;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
if (!c.contains(Float.intBitsToFloat(vals[i]))) {
containsAll = false;
break;
}
}
}
return containsAll;
}
private boolean allContainingIn(InternalFloatCollectionOps c) {
if (this.isEmpty())
return true;
boolean containsAll = true;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
if (!c.contains(vals[i])) {
containsAll = false;
break;
}
}
}
return containsAll;
}
@Override
public boolean reverseAddAllTo(FloatCollection c) {
if (c instanceof InternalFloatCollectionOps)
return reverseAddAllTo((InternalFloatCollectionOps) c);
if (this.isEmpty())
return false;
boolean changed = false;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
changed |= c.add(Float.intBitsToFloat(vals[i]));
}
}
return changed;
}
private boolean reverseAddAllTo(InternalFloatCollectionOps c) {
if (this.isEmpty())
return false;
boolean changed = false;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
changed |= c.add(vals[i]);
}
}
return changed;
}
@Override
public boolean reverseRemoveAllFrom(FloatSet s) {
if (s instanceof InternalFloatCollectionOps)
return reverseRemoveAllFrom((InternalFloatCollectionOps) s);
if (this.isEmpty() || s.isEmpty())
return false;
boolean changed = false;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
changed |= s.removeFloat(Float.intBitsToFloat(vals[i]));
}
}
return changed;
}
private boolean reverseRemoveAllFrom(InternalFloatCollectionOps s) {
if (this.isEmpty() || s.isEmpty())
return false;
boolean changed = false;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
changed |= s.removeFloat(vals[i]);
}
}
return changed;
}
@Override
@Nonnull
public FloatIterator iterator() {
return new NoRemovedValueIterator(
);
}
@Nonnull
@Override
public FloatCursor cursor() {
return new NoRemovedValueCursor(
);
}
@Override
@Nonnull
public Object[] toArray() {
int size = size();
Object[] result = new Object[size];
if (size == 0)
return result;
int resultIndex = 0;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
result[resultIndex++] = Float.intBitsToFloat(vals[i]);
}
}
return result;
}
@Override
@SuppressWarnings("unchecked")
@Nonnull
public T[] toArray(@Nonnull T[] a) {
int size = size();
if (a.length < size) {
Class> elementType = a.getClass().getComponentType();
a = (T[]) java.lang.reflect.Array.newInstance(elementType, size);
}
if (size == 0) {
if (a.length > 0)
a[0] = null;
return a;
}
int resultIndex = 0;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
a[resultIndex++] = (T) Float.valueOf(Float.intBitsToFloat(vals[i]));
}
}
if (a.length > resultIndex)
a[resultIndex] = null;
return a;
}
@Override
public float[] toFloatArray() {
int size = size();
float[] result = new float[size];
if (size == 0)
return result;
int resultIndex = 0;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
result[resultIndex++] = Float.intBitsToFloat(vals[i]);
}
}
return result;
}
@Override
public float[] toArray(float[] a) {
int size = size();
if (a.length < size)
a = new float[size];
if (size == 0) {
if (a.length > 0)
a[0] = 0.0f;
return a;
}
int resultIndex = 0;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
a[resultIndex++] = Float.intBitsToFloat(vals[i]);
}
}
if (a.length > resultIndex)
a[resultIndex] = 0.0f;
return a;
}
@Override
public String toString() {
if (this.isEmpty())
return "[]";
StringBuilder sb = new StringBuilder();
int elementCount = 0;
byte free = freeValue;
byte[] keys = set;
int[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
sb.append(' ').append(Float.intBitsToFloat(vals[i])).append(',');
if (++elementCount == 8) {
int expectedLength = sb.length() * (size() / 8);
sb.ensureCapacity(expectedLength + (expectedLength / 2));
}
}
}
sb.setCharAt(0, '[');
sb.setCharAt(sb.length() - 1, ']');
return sb.toString();
}
@Override
public boolean remove(Object o) {
return removeFloat(( Float ) o);
}
@Override
public boolean removeFloat(float v) {
return removeValue(v);
}
@Override
public boolean removeFloat(int bits) {
return removeValue(bits);
}
@Override
public void clear() {
ImmutableQHashSeparateKVByteFloatMapGO.this.clear();
}
public boolean removeIf(Predicate super Float> filter) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public boolean removeIf(FloatPredicate filter) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public boolean removeAll(@Nonnull Collection> c) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public boolean retainAll(@Nonnull Collection> c) {
throw new java.lang.UnsupportedOperationException();
}
}
class NoRemovedEntryIterator implements ObjIterator> {
final byte[] keys;
final int[] vals;
final byte free;
int nextIndex;
ImmutableEntry next;
NoRemovedEntryIterator() {
byte[] keys = this.keys = set;
int[] vals = this.vals = values;
byte free = this.free = freeValue;
int nextI = keys.length;
while (--nextI >= 0) {
byte key;
if ((key = keys[nextI]) != free) {
next = new ImmutableEntry(key, vals[nextI]);
break;
}
}
nextIndex = nextI;
}
@Override
public void forEachRemaining(@Nonnull Consumer super Map.Entry> action) {
if (action == null)
throw new java.lang.NullPointerException();
byte[] keys = this.keys;
int[] vals = this.vals;
byte free = this.free;
int nextI = nextIndex;
for (int i = nextI; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
action.accept(new ImmutableEntry(key, vals[i]));
}
}
if (nextI != nextIndex) {
throw new java.util.ConcurrentModificationException();
}
nextIndex = -1;
}
@Override
public boolean hasNext() {
return nextIndex >= 0;
}
@Override
public Map.Entry next() {
int nextI;
if ((nextI = nextIndex) >= 0) {
byte[] keys = this.keys;
byte free = this.free;
ImmutableEntry prev = next;
while (--nextI >= 0) {
byte key;
if ((key = keys[nextI]) != free) {
next = new ImmutableEntry(key, vals[nextI]);
break;
}
}
nextIndex = nextI;
return prev;
} else {
throw new java.util.NoSuchElementException();
}
}
@Override
public void remove() {
throw new java.lang.UnsupportedOperationException();
}
}
class NoRemovedEntryCursor implements ObjCursor> {
final byte[] keys;
final int[] vals;
final byte free;
int index;
byte curKey;
int curValue;
NoRemovedEntryCursor() {
this.keys = set;
index = keys.length;
vals = values;
byte free = this.free = freeValue;
curKey = free;
}
@Override
public void forEachForward(Consumer super Map.Entry> action) {
if (action == null)
throw new java.lang.NullPointerException();
byte[] keys = this.keys;
int[] vals = this.vals;
byte free = this.free;
int index = this.index;
for (int i = index - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
action.accept(new ImmutableEntry(key, vals[i]));
}
}
if (index != this.index) {
throw new java.util.ConcurrentModificationException();
}
this.index = -1;
curKey = free;
}
@Override
public Map.Entry elem() {
byte curKey;
if ((curKey = this.curKey) != free) {
return new ImmutableEntry(curKey, curValue);
} else {
throw new java.lang.IllegalStateException();
}
}
@Override
public boolean moveNext() {
byte[] keys = this.keys;
byte free = this.free;
for (int i = index - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
index = i;
curKey = key;
curValue = vals[i];
return true;
}
}
curKey = free;
index = -1;
return false;
}
@Override
public void remove() {
throw new java.lang.UnsupportedOperationException();
}
}
class NoRemovedValueIterator implements FloatIterator {
final byte[] keys;
final int[] vals;
final byte free;
int nextIndex;
float next;
NoRemovedValueIterator() {
byte[] keys = this.keys = set;
int[] vals = this.vals = values;
byte free = this.free = freeValue;
int nextI = keys.length;
while (--nextI >= 0) {
if (keys[nextI] != free) {
next = Float.intBitsToFloat(vals[nextI]);
break;
}
}
nextIndex = nextI;
}
@Override
public float nextFloat() {
int nextI;
if ((nextI = nextIndex) >= 0) {
byte[] keys = this.keys;
byte free = this.free;
float prev = next;
while (--nextI >= 0) {
if (keys[nextI] != free) {
next = Float.intBitsToFloat(vals[nextI]);
break;
}
}
nextIndex = nextI;
return prev;
} else {
throw new java.util.NoSuchElementException();
}
}
@Override
public void forEachRemaining(Consumer super Float> action) {
if (action == null)
throw new java.lang.NullPointerException();
byte[] keys = this.keys;
int[] vals = this.vals;
byte free = this.free;
int nextI = nextIndex;
for (int i = nextI; i >= 0; i--) {
if (keys[i] != free) {
action.accept(Float.intBitsToFloat(vals[i]));
}
}
if (nextI != nextIndex) {
throw new java.util.ConcurrentModificationException();
}
nextIndex = -1;
}
@Override
public void forEachRemaining(FloatConsumer action) {
if (action == null)
throw new java.lang.NullPointerException();
byte[] keys = this.keys;
int[] vals = this.vals;
byte free = this.free;
int nextI = nextIndex;
for (int i = nextI; i >= 0; i--) {
if (keys[i] != free) {
action.accept(Float.intBitsToFloat(vals[i]));
}
}
if (nextI != nextIndex) {
throw new java.util.ConcurrentModificationException();
}
nextIndex = -1;
}
@Override
public boolean hasNext() {
return nextIndex >= 0;
}
@Override
public Float next() {
return nextFloat();
}
@Override
public void remove() {
throw new java.lang.UnsupportedOperationException();
}
}
class NoRemovedValueCursor implements FloatCursor {
final byte[] keys;
final int[] vals;
final byte free;
int index;
byte curKey;
int curValue;
NoRemovedValueCursor() {
this.keys = set;
index = keys.length;
vals = values;
byte free = this.free = freeValue;
curKey = free;
}
@Override
public void forEachForward(FloatConsumer action) {
if (action == null)
throw new java.lang.NullPointerException();
byte[] keys = this.keys;
int[] vals = this.vals;
byte free = this.free;
int index = this.index;
for (int i = index - 1; i >= 0; i--) {
if (keys[i] != free) {
action.accept(Float.intBitsToFloat(vals[i]));
}
}
if (index != this.index) {
throw new java.util.ConcurrentModificationException();
}
this.index = -1;
curKey = free;
}
@Override
public float elem() {
if (curKey != free) {
return Float.intBitsToFloat(curValue);
} else {
throw new java.lang.IllegalStateException();
}
}
@Override
public boolean moveNext() {
byte[] keys = this.keys;
byte free = this.free;
for (int i = index - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
index = i;
curKey = key;
curValue = vals[i];
return true;
}
}
curKey = free;
index = -1;
return false;
}
@Override
public void remove() {
throw new java.lang.UnsupportedOperationException();
}
}
class NoRemovedMapCursor implements ByteFloatCursor {
final byte[] keys;
final int[] vals;
final byte free;
int index;
byte curKey;
int curValue;
NoRemovedMapCursor() {
this.keys = set;
index = keys.length;
vals = values;
byte free = this.free = freeValue;
curKey = free;
}
@Override
public void forEachForward(ByteFloatConsumer action) {
if (action == null)
throw new java.lang.NullPointerException();
byte[] keys = this.keys;
int[] vals = this.vals;
byte free = this.free;
int index = this.index;
for (int i = index - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
action.accept(key, Float.intBitsToFloat(vals[i]));
}
}
if (index != this.index) {
throw new java.util.ConcurrentModificationException();
}
this.index = -1;
curKey = free;
}
@Override
public byte key() {
byte curKey;
if ((curKey = this.curKey) != free) {
return curKey;
} else {
throw new java.lang.IllegalStateException();
}
}
@Override
public float value() {
if (curKey != free) {
return Float.intBitsToFloat(curValue);
} else {
throw new java.lang.IllegalStateException();
}
}
@Override
public void setValue(float value) {
if (curKey != free) {
vals[index] = Float.floatToIntBits(value);
} else {
throw new java.lang.IllegalStateException();
}
}
@Override
public boolean moveNext() {
byte[] keys = this.keys;
byte free = this.free;
for (int i = index - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
index = i;
curKey = key;
curValue = vals[i];
return true;
}
}
curKey = free;
index = -1;
return false;
}
@Override
public void remove() {
throw new java.lang.UnsupportedOperationException();
}
}
}