com.gs.collections.impl.map.mutable.primitive.FloatBooleanHashMap Maven / Gradle / Ivy
Show all versions of gs-collections Show documentation
/*
* Copyright 2014 Goldman Sachs.
*
* 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.gs.collections.impl.map.mutable.primitive;
import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.Arrays;
import java.util.BitSet;
import java.util.Iterator;
import java.util.NoSuchElementException;
import com.gs.collections.api.BooleanIterable;
import com.gs.collections.api.FloatIterable;
import com.gs.collections.api.LazyBooleanIterable;
import com.gs.collections.api.LazyFloatIterable;
import com.gs.collections.api.LazyIterable;
import com.gs.collections.api.RichIterable;
import com.gs.collections.api.bag.primitive.MutableBooleanBag;
import com.gs.collections.api.bag.primitive.MutableFloatBag;
import com.gs.collections.api.block.function.primitive.BooleanFunction;
import com.gs.collections.api.block.function.primitive.BooleanFunction0;
import com.gs.collections.api.block.function.primitive.BooleanToBooleanFunction;
import com.gs.collections.api.block.function.primitive.BooleanToObjectFunction;
import com.gs.collections.api.block.function.primitive.FloatToBooleanFunction;
import com.gs.collections.api.block.function.primitive.FloatToObjectFunction;
import com.gs.collections.api.block.function.primitive.ObjectFloatToObjectFunction;
import com.gs.collections.api.block.function.primitive.ObjectBooleanToObjectFunction;
import com.gs.collections.api.block.predicate.primitive.BooleanPredicate;
import com.gs.collections.api.block.predicate.primitive.FloatBooleanPredicate;
import com.gs.collections.api.block.predicate.primitive.FloatPredicate;
import com.gs.collections.api.block.procedure.Procedure;
import com.gs.collections.api.block.procedure.Procedure2;
import com.gs.collections.api.block.procedure.primitive.BooleanProcedure;
import com.gs.collections.api.block.procedure.primitive.FloatBooleanProcedure;
import com.gs.collections.api.block.procedure.primitive.FloatProcedure;
import com.gs.collections.api.block.procedure.primitive.ObjectIntProcedure;
import com.gs.collections.api.collection.MutableCollection;
import com.gs.collections.api.collection.primitive.ImmutableBooleanCollection;
import com.gs.collections.api.collection.primitive.MutableBooleanCollection;
import com.gs.collections.api.iterator.BooleanIterator;
import com.gs.collections.api.iterator.FloatIterator;
import com.gs.collections.api.list.primitive.MutableBooleanList;
import com.gs.collections.api.list.primitive.MutableFloatList;
import com.gs.collections.api.map.primitive.FloatBooleanMap;
import com.gs.collections.api.map.primitive.ImmutableFloatBooleanMap;
import com.gs.collections.api.map.primitive.MutableFloatBooleanMap;
import com.gs.collections.api.set.MutableSet;
import com.gs.collections.api.set.primitive.BooleanSet;
import com.gs.collections.api.set.primitive.FloatSet;
import com.gs.collections.api.set.primitive.ImmutableFloatSet;
import com.gs.collections.api.set.primitive.MutableBooleanSet;
import com.gs.collections.api.set.primitive.MutableFloatSet;
import com.gs.collections.api.tuple.primitive.FloatBooleanPair;
import com.gs.collections.impl.bag.mutable.primitive.BooleanHashBag;
import com.gs.collections.impl.bag.mutable.primitive.FloatHashBag;
import com.gs.collections.impl.block.factory.primitive.FloatPredicates;
import com.gs.collections.impl.collection.mutable.primitive.SynchronizedBooleanCollection;
import com.gs.collections.impl.collection.mutable.primitive.UnmodifiableBooleanCollection;
import com.gs.collections.impl.factory.Sets;
import com.gs.collections.impl.factory.primitive.BooleanLists;
import com.gs.collections.impl.factory.primitive.FloatBooleanMaps;
import com.gs.collections.impl.factory.primitive.FloatSets;
import com.gs.collections.impl.lazy.AbstractLazyIterable;
import com.gs.collections.impl.lazy.primitive.CollectFloatToObjectIterable;
import com.gs.collections.impl.lazy.primitive.LazyBooleanIterableAdapter;
import com.gs.collections.impl.lazy.primitive.LazyFloatIterableAdapter;
import com.gs.collections.impl.lazy.primitive.SelectFloatIterable;
import com.gs.collections.impl.list.mutable.FastList;
import com.gs.collections.impl.list.mutable.primitive.BooleanArrayList;
import com.gs.collections.impl.list.mutable.primitive.FloatArrayList;
import com.gs.collections.impl.set.mutable.primitive.BooleanHashSet;
import com.gs.collections.impl.set.mutable.primitive.FloatHashSet;
import com.gs.collections.impl.set.mutable.primitive.SynchronizedFloatSet;
import com.gs.collections.impl.set.mutable.primitive.UnmodifiableFloatSet;
import com.gs.collections.impl.tuple.primitive.PrimitiveTuples;
/**
* This file was automatically generated from template file primitiveBooleanHashMap.stg.
*
* @since 3.0.
*/
public class FloatBooleanHashMap implements MutableFloatBooleanMap, Externalizable
{
static final boolean EMPTY_VALUE = false;
private static final long serialVersionUID = 1L;
private static final float EMPTY_KEY = 0.0f;
private static final float REMOVED_KEY = 1.0f;
private static final float DEFAULT_LOAD_FACTOR = 0.5f;
private static final int DEFAULT_INITIAL_CAPACITY = 8;
private int occupied;
private int maxSize;
private float[] keys;
private BitSet values;
private float loadFactor = DEFAULT_LOAD_FACTOR;
private SentinelValues sentinelValues;
public FloatBooleanHashMap()
{
this.allocate(DEFAULT_INITIAL_CAPACITY << 1);
}
public FloatBooleanHashMap(int initialCapacity)
{
this(initialCapacity, DEFAULT_LOAD_FACTOR);
}
public FloatBooleanHashMap(FloatBooleanMap map)
{
this(Math.max(map.size(), DEFAULT_INITIAL_CAPACITY), DEFAULT_LOAD_FACTOR);
this.putAll(map);
}
public FloatBooleanHashMap(int initialCapacity, float loadFactor)
{
if (initialCapacity < 0)
{
throw new IllegalArgumentException("initial capacity cannot be less than 0");
}
this.loadFactor = loadFactor;
this.init(this.fastCeil(initialCapacity / loadFactor));
}
public MutableFloatBooleanMap asUnmodifiable()
{
return new UnmodifiableFloatBooleanMap(this);
}
public MutableFloatBooleanMap asSynchronized()
{
return new SynchronizedFloatBooleanMap(this);
}
public ImmutableFloatBooleanMap toImmutable()
{
return FloatBooleanMaps.immutable.withAll(this);
}
public static FloatBooleanHashMap newWithKeysValues(float key1, boolean value1)
{
return new FloatBooleanHashMap(1).withKeyValue(key1, value1);
}
public static FloatBooleanHashMap newWithKeysValues(float key1, boolean value1, float key2, boolean value2)
{
return new FloatBooleanHashMap(2).withKeysValues(key1, value1, key2, value2);
}
public static FloatBooleanHashMap newWithKeysValues(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3)
{
return new FloatBooleanHashMap(3).withKeysValues(key1, value1, key2, value2, key3, value3);
}
public static FloatBooleanHashMap newWithKeysValues(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3, float key4, boolean value4)
{
return new FloatBooleanHashMap(4).withKeysValues(key1, value1, key2, value2, key3, value3, key4, value4);
}
public FloatBooleanHashMap withKeyValue(float key1, boolean value1)
{
this.put(key1, value1);
return this;
}
public FloatBooleanHashMap withKeysValues(float key1, boolean value1, float key2, boolean value2)
{
this.put(key1, value1);
this.put(key2, value2);
return this;
}
public FloatBooleanHashMap withKeysValues(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3)
{
this.put(key1, value1);
this.put(key2, value2);
this.put(key3, value3);
return this;
}
public FloatBooleanHashMap withKeysValues(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3, float key4, boolean value4)
{
this.put(key1, value1);
this.put(key2, value2);
this.put(key3, value3);
this.put(key4, value4);
return this;
}
public FloatBooleanHashMap withoutKey(float key)
{
this.removeKey(key);
return this;
}
public FloatBooleanHashMap withoutAllKeys(FloatIterable keys)
{
keys.forEach(new FloatProcedure()
{
public void value(float key)
{
FloatBooleanHashMap.this.removeKey(key);
}
});
return this;
}
private int init(int initialCapacity)
{
int capacity = 1;
while (capacity < initialCapacity)
{
capacity <<= 1;
}
return this.allocate(capacity);
}
private int fastCeil(float v)
{
int possibleResult = (int) v;
if (v - possibleResult > 0.0F)
{
possibleResult++;
}
return possibleResult;
}
private static boolean isEmptyKey(float key)
{
return Float.compare(key, EMPTY_KEY) == 0;
}
private static boolean isRemovedKey(float key)
{
return Float.compare(key, REMOVED_KEY) == 0;
}
private static boolean isNonSentinel(float key)
{
return !isEmptyKey(key) && !isRemovedKey(key);
}
private int allocate(int capacity)
{
this.allocateTable(capacity);
this.computeMaxSize(capacity);
return capacity;
}
private void allocateTable(int sizeToAllocate)
{
this.keys = new float[sizeToAllocate];
this.values = new BitSet(sizeToAllocate);
}
private void computeMaxSize(int capacity)
{
// need at least one free slot for open addressing
this.maxSize = Math.min(capacity - 1, (int) (capacity * this.loadFactor));
}
public int size()
{
return this.occupied + (this.sentinelValues == null ? 0 : this.sentinelValues.size());
}
public boolean isEmpty()
{
return this.occupied == 0 && (this.sentinelValues == null || this.sentinelValues.size() == 0);
}
public boolean notEmpty()
{
return this.occupied != 0 || (this.sentinelValues != null && this.sentinelValues.size() != 0);
}
private void rehash()
{
this.rehash(this.keys.length << 1);
}
private void rehash(int newCapacity)
{
int oldLength = this.keys.length;
float[] old = this.keys;
BitSet oldValues = this.values;
this.allocate(newCapacity);
this.occupied = 0;
for (int i = 0; i < oldLength; i++)
{
if (isNonSentinel(old[i]))
{
this.put(old[i], oldValues.get(i));
}
}
}
// exposed for testing
int probe(float element)
{
int index = this.spread(element);
float keyAtIndex = this.keys[index];
if (Float.compare(keyAtIndex, element) == 0 || Float.compare(keyAtIndex, EMPTY_KEY) == 0)
{
return index;
}
int removedIndex = Float.compare(keyAtIndex, REMOVED_KEY) == 0 ? index : -1;
int nextIndex = index;
int probe = 17;
// loop until an empty slot is reached
while (true)
{
// Probe algorithm: 17*n*(n+1)/2 where n = number of collisions
nextIndex += probe;
probe += 17;
nextIndex &= this.keys.length - 1;
if (Float.compare(this.keys[nextIndex], element) == 0)
{
return nextIndex;
}
if (Float.compare(this.keys[nextIndex], REMOVED_KEY) == 0)
{
if (removedIndex == -1)
{
removedIndex = nextIndex;
}
}
else if (Float.compare(this.keys[nextIndex], EMPTY_KEY) == 0)
{
return removedIndex == -1 ? nextIndex : removedIndex;
}
}
}
// exposed for testing
int spread(float element)
{
int code = Float.floatToIntBits(element);
code ^= 61 ^ (code >> 16);
code += code << 3;
code ^= code >> 4;
code *= 0x27d4eb2d;
code ^= code >> 15;
return code & (this.keys.length - 1);
}
public void clear()
{
this.sentinelValues = null;
this.occupied = 0;
Arrays.fill(this.keys, EMPTY_KEY);
this.values.clear();
}
public void put(float key, boolean value)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
}
this.sentinelValues.containsZeroKey = true;
this.sentinelValues.zeroValue = value;
return;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
}
this.sentinelValues.containsOneKey = true;
this.sentinelValues.oneValue = value;
return;
}
int index = this.probe(key);
if (Float.compare(this.keys[index], key) == 0)
{
// key already present in map
this.values.set(index, value);
return;
}
this.keys[index] = key;
this.values.set(index, value);
++this.occupied;
if (this.occupied > this.maxSize)
{
this.rehash();
}
}
public void putAll(FloatBooleanMap map)
{
map.forEachKeyValue(new FloatBooleanProcedure()
{
public void value(float key, boolean value)
{
FloatBooleanHashMap.this.put(key, value);
}
});
}
public boolean containsKey(float key)
{
if (isEmptyKey(key))
{
return this.sentinelValues != null && this.sentinelValues.containsZeroKey;
}
if (isRemovedKey(key))
{
return this.sentinelValues != null && this.sentinelValues.containsOneKey;
}
return Float.compare(this.keys[this.probe(key)], key) == 0;
}
public boolean containsValue(boolean value)
{
if (this.sentinelValues != null && this.sentinelValues.containsValue(value))
{
return true;
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && this.values.get(i) == value)
{
return true;
}
}
return false;
}
public boolean contains(boolean value)
{
return this.containsValue(value);
}
public boolean containsAll(boolean... source)
{
for (boolean each : source)
{
if (!this.contains(each))
{
return false;
}
}
return true;
}
public boolean containsAll(BooleanIterable source)
{
return source.allSatisfy(new BooleanPredicate()
{
public boolean accept(boolean value)
{
return FloatBooleanHashMap.this.contains(value);
}
});
}
public boolean get(float key)
{
return this.getIfAbsent(key, EMPTY_VALUE);
}
public boolean getIfAbsent(float key, boolean ifAbsent)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey)
{
return ifAbsent;
}
return this.sentinelValues.zeroValue;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsOneKey)
{
return ifAbsent;
}
return this.sentinelValues.oneValue;
}
int index = this.probe(key);
if (isNonSentinel(this.keys[index]))
{
return this.values.get(index);
}
return ifAbsent;
}
public boolean getOrThrow(float key)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey)
{
throw new IllegalStateException("Key " + key + " not present.");
}
return this.sentinelValues.zeroValue;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsOneKey)
{
throw new IllegalStateException("Key " + key + " not present.");
}
return this.sentinelValues.oneValue;
}
int index = this.probe(key);
if (isNonSentinel(this.keys[index]))
{
return this.values.get(index);
}
throw new IllegalStateException("Key " + key + " not present.");
}
public boolean getIfAbsentPut(float key, boolean value)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
this.sentinelValues.containsZeroKey = true;
this.sentinelValues.zeroValue = value;
return value;
}
if (this.sentinelValues.containsZeroKey)
{
return this.sentinelValues.zeroValue;
}
this.sentinelValues.containsZeroKey = true;
this.sentinelValues.zeroValue = value;
return value;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
this.sentinelValues.containsOneKey = true;
this.sentinelValues.oneValue = value;
return value;
}
if (this.sentinelValues.containsOneKey)
{
return this.sentinelValues.oneValue;
}
this.sentinelValues.containsOneKey = true;
this.sentinelValues.oneValue = value;
return value;
}
int index = this.probe(key);
if (Float.compare(this.keys[index], key) == 0)
{
return this.values.get(index);
}
this.keys[index] = key;
this.occupied++;
this.values.set(index, value);
return value;
}
public boolean getIfAbsentPut(float key, BooleanFunction0 function)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
boolean value = function.value();
this.sentinelValues = new SentinelValues();
this.sentinelValues.containsZeroKey = true;
this.sentinelValues.zeroValue = value;
return value;
}
if (this.sentinelValues.containsZeroKey)
{
return this.sentinelValues.zeroValue;
}
boolean value = function.value();
this.sentinelValues.containsZeroKey = true;
this.sentinelValues.zeroValue = value;
return value;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
boolean value = function.value();
this.sentinelValues = new SentinelValues();
this.sentinelValues.containsOneKey = true;
this.sentinelValues.oneValue = value;
return value;
}
if (this.sentinelValues.containsOneKey)
{
return this.sentinelValues.oneValue;
}
boolean value = function.value();
this.sentinelValues.containsOneKey = true;
this.sentinelValues.oneValue = value;
return value;
}
int index = this.probe(key);
if (Float.compare(this.keys[index], key) == 0)
{
return this.values.get(index);
}
this.keys[index] = key;
this.occupied++;
boolean value = function.value();
this.values.set(index, value);
return value;
}
public boolean getIfAbsentPutWith(float key, BooleanFunction super P> function, P parameter)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
boolean value = function.booleanValueOf(parameter);
this.sentinelValues = new SentinelValues();
this.sentinelValues.containsZeroKey = true;
this.sentinelValues.zeroValue = value;
return value;
}
if (this.sentinelValues.containsZeroKey)
{
return this.sentinelValues.zeroValue;
}
boolean value = function.booleanValueOf(parameter);
this.sentinelValues.containsZeroKey = true;
this.sentinelValues.zeroValue = value;
return value;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
boolean value = function.booleanValueOf(parameter);
this.sentinelValues = new SentinelValues();
this.sentinelValues.containsOneKey = true;
this.sentinelValues.oneValue = value;
return value;
}
if (this.sentinelValues.containsOneKey)
{
return this.sentinelValues.oneValue;
}
boolean value = function.booleanValueOf(parameter);
this.sentinelValues.containsOneKey = true;
this.sentinelValues.oneValue = value;
return value;
}
int index = this.probe(key);
if (Float.compare(this.keys[index], key) == 0)
{
return this.values.get(index);
}
this.keys[index] = key;
this.occupied++;
boolean value = function.booleanValueOf(parameter);
this.values.set(index, value);
return value;
}
public boolean getIfAbsentPutWithKey(float key, FloatToBooleanFunction function)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
boolean value = function.valueOf(key);
this.sentinelValues = new SentinelValues();
this.sentinelValues.containsZeroKey = true;
this.sentinelValues.zeroValue = value;
return value;
}
if (this.sentinelValues.containsZeroKey)
{
return this.sentinelValues.zeroValue;
}
boolean value = function.valueOf(key);
this.sentinelValues.containsZeroKey = true;
this.sentinelValues.zeroValue = value;
return value;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
boolean value = function.valueOf(key);
this.sentinelValues = new SentinelValues();
this.sentinelValues.containsOneKey = true;
this.sentinelValues.oneValue = value;
return value;
}
if (this.sentinelValues.containsOneKey)
{
return this.sentinelValues.oneValue;
}
boolean value = function.valueOf(key);
this.sentinelValues.containsOneKey = true;
this.sentinelValues.oneValue = value;
return value;
}
int index = this.probe(key);
if (Float.compare(this.keys[index], key) == 0)
{
return this.values.get(index);
}
this.keys[index] = key;
this.occupied++;
boolean value = function.valueOf(key);
this.values.set(index, value);
return value;
}
public boolean updateValue(float key, boolean initialValueIfAbsent, BooleanToBooleanFunction function)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
this.sentinelValues.containsZeroKey = true;
this.sentinelValues.zeroValue = function.valueOf(initialValueIfAbsent);
}
else if (this.sentinelValues.containsZeroKey)
{
this.sentinelValues.zeroValue = function.valueOf(this.sentinelValues.zeroValue);
}
else
{
this.sentinelValues.containsZeroKey = true;
this.sentinelValues.zeroValue = function.valueOf(initialValueIfAbsent);
}
return this.sentinelValues.zeroValue;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
this.sentinelValues.containsOneKey = true;
this.sentinelValues.oneValue = function.valueOf(initialValueIfAbsent);
}
else if (this.sentinelValues.containsOneKey)
{
this.sentinelValues.oneValue = function.valueOf(this.sentinelValues.oneValue);
}
else
{
this.sentinelValues.containsOneKey = true;
this.sentinelValues.oneValue = function.valueOf(initialValueIfAbsent);
}
return this.sentinelValues.oneValue;
}
int index = this.probe(key);
if (Float.compare(this.keys[index], key) == 0)
{
this.values.set(index, function.valueOf(this.values.get(index)));
}
else
{
this.keys[index] = key;
this.occupied++;
this.values.set(index, function.valueOf(initialValueIfAbsent));
}
return this.values.get(index);
}
public void removeKey(float key)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey)
{
return;
}
if (this.sentinelValues.containsOneKey)
{
this.sentinelValues.containsZeroKey = false;
this.sentinelValues.zeroValue = EMPTY_VALUE;
}
else
{
this.sentinelValues = null;
}
return;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsOneKey)
{
return;
}
if (this.sentinelValues.containsZeroKey)
{
this.sentinelValues.containsOneKey = false;
this.sentinelValues.oneValue = EMPTY_VALUE;
}
else
{
this.sentinelValues = null;
}
return;
}
int index = this.probe(key);
if (Float.compare(this.keys[index], key) == 0)
{
this.keys[index] = REMOVED_KEY;
this.occupied--;
this.values.set(index, EMPTY_VALUE);
}
}
public void remove(float key)
{
this.removeKey(key);
}
public boolean removeKeyIfAbsent(float key, boolean value)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey)
{
return value;
}
boolean oldValue = this.sentinelValues.zeroValue;
if (this.sentinelValues.containsOneKey)
{
this.sentinelValues.containsZeroKey = false;
this.sentinelValues.zeroValue = EMPTY_VALUE;
}
else
{
this.sentinelValues = null;
}
return oldValue;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsOneKey)
{
return value;
}
boolean oldValue = this.sentinelValues.oneValue;
if (this.sentinelValues.containsZeroKey)
{
this.sentinelValues.containsOneKey = false;
this.sentinelValues.oneValue = EMPTY_VALUE;
}
else
{
this.sentinelValues = null;
}
return oldValue;
}
int index = this.probe(key);
if (Float.compare(this.keys[index], key) == 0)
{
this.keys[index] = REMOVED_KEY;
this.occupied--;
boolean oldValue = this.values.get(index);
this.values.set(index, EMPTY_VALUE);
return oldValue;
}
return value;
}
@Override
public boolean equals(Object obj)
{
if (this == obj)
{
return true;
}
if (!(obj instanceof FloatBooleanMap))
{
return false;
}
FloatBooleanMap other = (FloatBooleanMap) obj;
if (this.size() != other.size())
{
return false;
}
if (this.sentinelValues == null)
{
if (other.containsKey(EMPTY_KEY) || other.containsKey(REMOVED_KEY))
{
return false;
}
}
else
{
if (this.sentinelValues.containsZeroKey && (!other.containsKey(EMPTY_KEY) || this.sentinelValues.zeroValue != other.getOrThrow(EMPTY_KEY)))
{
return false;
}
if (this.sentinelValues.containsOneKey && (!other.containsKey(REMOVED_KEY) || this.sentinelValues.oneValue != other.getOrThrow(REMOVED_KEY)))
{
return false;
}
}
for (int i = 0; i < this.keys.length; i++)
{
float key = this.keys[i];
if (isNonSentinel(key) && (!other.containsKey(key) || this.values.get(i) != other.getOrThrow(key)))
{
return false;
}
}
return true;
}
@Override
public int hashCode()
{
int result = 0;
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
result += Float.floatToIntBits(EMPTY_KEY) ^ (this.sentinelValues.zeroValue ? 1231 : 1237);
}
if (this.sentinelValues.containsOneKey)
{
result += Float.floatToIntBits(REMOVED_KEY) ^ (this.sentinelValues.oneValue ? 1231 : 1237);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
result += Float.floatToIntBits(this.keys[i]) ^ (this.values.get(i) ? 1231 : 1237);
}
}
return result;
}
@Override
public String toString()
{
StringBuilder appendable = new StringBuilder();
appendable.append("{");
boolean first = true;
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
appendable.append(String.valueOf(EMPTY_KEY)).append("=").append(String.valueOf(this.sentinelValues.zeroValue));
first = false;
}
if (this.sentinelValues.containsOneKey)
{
if (!first)
{
appendable.append(", ");
}
appendable.append(String.valueOf(REMOVED_KEY)).append("=").append(String.valueOf(this.sentinelValues.oneValue));
first = false;
}
}
for (int i = 0; i < this.keys.length; i++)
{
float key = this.keys[i];
if (isNonSentinel(key))
{
if (!first)
{
appendable.append(", ");
}
appendable.append(String.valueOf(key)).append("=").append(String.valueOf(this.values.get(i)));
first = false;
}
}
appendable.append("}");
return appendable.toString();
}
public BooleanIterator booleanIterator()
{
return new InternalBooleanIterator();
}
public void forEach(BooleanProcedure procedure)
{
this.forEachValue(procedure);
}
public void forEachValue(BooleanProcedure procedure)
{
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
procedure.value(this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey)
{
procedure.value(this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
procedure.value(this.values.get(i));
}
}
}
public void forEachKey(FloatProcedure procedure)
{
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
procedure.value(EMPTY_KEY);
}
if (this.sentinelValues.containsOneKey)
{
procedure.value(REMOVED_KEY);
}
}
for (float key : this.keys)
{
if (isNonSentinel(key))
{
procedure.value(key);
}
}
}
public void forEachKeyValue(FloatBooleanProcedure procedure)
{
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
procedure.value(EMPTY_KEY, this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey)
{
procedure.value(REMOVED_KEY, this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
procedure.value(this.keys[i], this.values.get(i));
}
}
}
public FloatBooleanHashMap select(FloatBooleanPredicate predicate)
{
FloatBooleanHashMap result = new FloatBooleanHashMap();
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY, this.sentinelValues.zeroValue))
{
result.put(EMPTY_KEY, this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY, this.sentinelValues.oneValue))
{
result.put(REMOVED_KEY, this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && predicate.accept(this.keys[i], this.values.get(i)))
{
result.put(this.keys[i], this.values.get(i));
}
}
return result;
}
public FloatBooleanHashMap reject(FloatBooleanPredicate predicate)
{
FloatBooleanHashMap result = new FloatBooleanHashMap();
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey && !predicate.accept(EMPTY_KEY, this.sentinelValues.zeroValue))
{
result.put(EMPTY_KEY, this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey && !predicate.accept(REMOVED_KEY, this.sentinelValues.oneValue))
{
result.put(REMOVED_KEY, this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && !predicate.accept(this.keys[i], this.values.get(i)))
{
result.put(this.keys[i], this.values.get(i));
}
}
return result;
}
public V injectInto(V injectedValue, ObjectBooleanToObjectFunction super V, ? extends V> function)
{
V result = injectedValue;
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
result = function.valueOf(result, this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey)
{
result = function.valueOf(result, this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
result = function.valueOf(result, this.values.get(i));
}
}
return result;
}
public String makeString()
{
return this.makeString(", ");
}
public String makeString(String separator)
{
return this.makeString("", separator, "");
}
public String makeString(String start, String separator, String end)
{
Appendable stringBuilder = new StringBuilder();
this.appendString(stringBuilder, start, separator, end);
return stringBuilder.toString();
}
public void appendString(Appendable appendable)
{
this.appendString(appendable, ", ");
}
public void appendString(Appendable appendable, String separator)
{
this.appendString(appendable, "", separator, "");
}
public void appendString(Appendable appendable, String start, String separator, String end)
{
try
{
appendable.append(start);
boolean first = true;
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
appendable.append(String.valueOf(this.sentinelValues.zeroValue));
first = false;
}
if (this.sentinelValues.containsOneKey)
{
if (!first)
{
appendable.append(separator);
}
appendable.append(String.valueOf(this.sentinelValues.oneValue));
first = false;
}
}
for (int i = 0; i < this.keys.length; i++)
{
float key = this.keys[i];
if (isNonSentinel(key))
{
if (!first)
{
appendable.append(separator);
}
appendable.append(String.valueOf(this.values.get(i)));
first = false;
}
}
appendable.append(end);
}
catch (IOException e)
{
throw new RuntimeException(e);
}
}
public MutableBooleanCollection select(BooleanPredicate predicate)
{
BooleanArrayList result = new BooleanArrayList();
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey && predicate.accept(this.sentinelValues.zeroValue))
{
result.add(this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey && predicate.accept(this.sentinelValues.oneValue))
{
result.add(this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && predicate.accept(this.values.get(i)))
{
result.add(this.values.get(i));
}
}
return result;
}
public MutableBooleanCollection reject(BooleanPredicate predicate)
{
BooleanArrayList result = new BooleanArrayList();
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey && !predicate.accept(this.sentinelValues.zeroValue))
{
result.add(this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey && !predicate.accept(this.sentinelValues.oneValue))
{
result.add(this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && !predicate.accept(this.values.get(i)))
{
result.add(this.values.get(i));
}
}
return result;
}
public boolean detectIfNone(BooleanPredicate predicate, boolean value)
{
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey && predicate.accept(this.sentinelValues.zeroValue))
{
return this.sentinelValues.zeroValue;
}
if (this.sentinelValues.containsOneKey && predicate.accept(this.sentinelValues.oneValue))
{
return this.sentinelValues.oneValue;
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && predicate.accept(this.values.get(i)))
{
return this.values.get(i);
}
}
return value;
}
public MutableCollection collect(BooleanToObjectFunction extends V> function)
{
FastList target = FastList.newList(this.size());
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
target.add(function.valueOf(this.sentinelValues.zeroValue));
}
if (this.sentinelValues.containsOneKey)
{
target.add(function.valueOf(this.sentinelValues.oneValue));
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
target.add(function.valueOf(this.values.get(i)));
}
}
return target;
}
public int count(BooleanPredicate predicate)
{
int count = 0;
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey && predicate.accept(this.sentinelValues.zeroValue))
{
count++;
}
if (this.sentinelValues.containsOneKey && predicate.accept(this.sentinelValues.oneValue))
{
count++;
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && predicate.accept(this.values.get(i)))
{
count++;
}
}
return count;
}
public boolean anySatisfy(BooleanPredicate predicate)
{
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey && predicate.accept(this.sentinelValues.zeroValue))
{
return true;
}
if (this.sentinelValues.containsOneKey && predicate.accept(this.sentinelValues.oneValue))
{
return true;
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && predicate.accept(this.values.get(i)))
{
return true;
}
}
return false;
}
public boolean allSatisfy(BooleanPredicate predicate)
{
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey && !predicate.accept(this.sentinelValues.zeroValue))
{
return false;
}
if (this.sentinelValues.containsOneKey && !predicate.accept(this.sentinelValues.oneValue))
{
return false;
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && !predicate.accept(this.values.get(i)))
{
return false;
}
}
return true;
}
public boolean noneSatisfy(BooleanPredicate predicate)
{
return !this.anySatisfy(predicate);
}
public boolean[] toArray()
{
boolean[] array = new boolean[this.size()];
int index = 0;
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
array[index] = this.sentinelValues.zeroValue;
index++;
}
if (this.sentinelValues.containsOneKey)
{
array[index] = this.sentinelValues.oneValue;
index++;
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
array[index] = this.values.get(i);
index++;
}
}
return array;
}
public MutableBooleanList toList()
{
return BooleanArrayList.newList(this);
}
public MutableBooleanSet toSet()
{
return BooleanHashSet.newSet(this);
}
public MutableBooleanBag toBag()
{
return BooleanHashBag.newBag(this);
}
public LazyBooleanIterable asLazy()
{
return new LazyBooleanIterableAdapter(this);
}
public LazyFloatIterable keysView()
{
return new KeysView();
}
public RichIterable keyValuesView()
{
return new KeyValuesView();
}
public void writeExternal(ObjectOutput out) throws IOException
{
out.writeInt(this.size());
out.writeFloat(this.loadFactor);
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
out.writeFloat(EMPTY_KEY);
out.writeBoolean(this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey)
{
out.writeFloat(REMOVED_KEY);
out.writeBoolean(this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
out.writeFloat(this.keys[i]);
out.writeBoolean(this.values.get(i));
}
}
}
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
{
int size = in.readInt();
this.loadFactor = in.readFloat();
this.init(Math.max((int) (size / this.loadFactor) + 1,
DEFAULT_INITIAL_CAPACITY));
for (int i = 0; i < size; i++)
{
this.put(in.readFloat(), in.readBoolean());
}
}
private static final class SentinelValues
{
private boolean containsZeroKey;
private boolean containsOneKey;
private boolean zeroValue;
private boolean oneValue;
public int size()
{
return (this.containsZeroKey ? 1 : 0) + (this.containsOneKey ? 1 : 0);
}
public boolean containsValue(boolean value)
{
boolean valueEqualsZeroValue = this.containsZeroKey && this.zeroValue == value;
boolean valueEqualsOneValue = this.containsOneKey && this.oneValue == value;
return valueEqualsZeroValue || valueEqualsOneValue;
}
}
private class InternalBooleanIterator implements BooleanIterator
{
private int count;
private int position;
private boolean handledZero;
private boolean handledOne;
public boolean hasNext()
{
return this.count < FloatBooleanHashMap.this.size();
}
public boolean next()
{
if (!this.hasNext())
{
throw new NoSuchElementException("next() called, but the iterator is exhausted");
}
this.count++;
if (!this.handledZero)
{
this.handledZero = true;
if (FloatBooleanHashMap.this.containsKey(EMPTY_KEY))
{
return FloatBooleanHashMap.this.sentinelValues.zeroValue;
}
}
if (!this.handledOne)
{
this.handledOne = true;
if (FloatBooleanHashMap.this.containsKey(REMOVED_KEY))
{
return FloatBooleanHashMap.this.sentinelValues.oneValue;
}
}
float[] keys = FloatBooleanHashMap.this.keys;
while (!isNonSentinel(keys[this.position]))
{
this.position++;
}
boolean result = FloatBooleanHashMap.this.values.get(this.position);
this.position++;
return result;
}
}
private class KeysView implements LazyFloatIterable
{
public boolean isEmpty()
{
return FloatBooleanHashMap.this.isEmpty();
}
public boolean notEmpty()
{
return FloatBooleanHashMap.this.notEmpty();
}
public int size()
{
return FloatBooleanHashMap.this.size();
}
public boolean contains(float key)
{
return FloatBooleanHashMap.this.containsKey(key);
}
public boolean containsAll(float... keys)
{
for (float key : keys)
{
if (!FloatBooleanHashMap.this.containsKey(key))
{
return false;
}
}
return true;
}
public boolean containsAll(FloatIterable source)
{
return source.allSatisfy(new FloatPredicate()
{
public boolean accept(float key)
{
return FloatBooleanHashMap.this.containsKey(key);
}
});
}
public FloatIterator floatIterator()
{
return new KeySetIterator();
}
public void forEach(FloatProcedure procedure)
{
FloatBooleanHashMap.this.forEachKey(procedure);
}
@Override
public String toString()
{
return this.makeString("[", ", ", "]");
}
public String makeString()
{
return this.makeString(", ");
}
public String makeString(String separator)
{
return this.makeString("", separator, "");
}
public String makeString(String start, String separator, String end)
{
Appendable stringBuilder = new StringBuilder();
this.appendString(stringBuilder, start, separator, end);
return stringBuilder.toString();
}
public void appendString(Appendable appendable)
{
this.appendString(appendable, ", ");
}
public void appendString(Appendable appendable, String separator)
{
this.appendString(appendable, "", separator, "");
}
public void appendString(Appendable appendable, String start, String separator, String end)
{
try
{
appendable.append(start);
boolean first = true;
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey)
{
appendable.append(String.valueOf(EMPTY_KEY));
first = false;
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey)
{
if (!first)
{
appendable.append(separator);
}
appendable.append(String.valueOf(REMOVED_KEY));
first = false;
}
}
for (float key : FloatBooleanHashMap.this.keys)
{
if (isNonSentinel(key))
{
if (!first)
{
appendable.append(separator);
}
appendable.append(String.valueOf(key));
first = false;
}
}
appendable.append(end);
}
catch (IOException e)
{
throw new RuntimeException(e);
}
}
public int count(FloatPredicate predicate)
{
int count = 0;
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
count++;
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
count++;
}
}
for (float key : FloatBooleanHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
count++;
}
}
return count;
}
public boolean anySatisfy(FloatPredicate predicate)
{
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
return true;
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
return true;
}
}
for (float key : FloatBooleanHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
return true;
}
}
return false;
}
public boolean allSatisfy(FloatPredicate predicate)
{
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey && !predicate.accept(EMPTY_KEY))
{
return false;
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey && !predicate.accept(REMOVED_KEY))
{
return false;
}
}
for (float key : FloatBooleanHashMap.this.keys)
{
if (isNonSentinel(key) && !predicate.accept(key))
{
return false;
}
}
return true;
}
public boolean noneSatisfy(FloatPredicate predicate)
{
return !this.anySatisfy(predicate);
}
public LazyFloatIterable select(FloatPredicate predicate)
{
return new SelectFloatIterable(this, predicate);
}
public LazyFloatIterable reject(FloatPredicate predicate)
{
return new SelectFloatIterable(this, FloatPredicates.not(predicate));
}
public float detectIfNone(FloatPredicate predicate, float value)
{
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
return EMPTY_KEY;
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
return REMOVED_KEY;
}
}
for (float key : FloatBooleanHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
return key;
}
}
return value;
}
public LazyIterable collect(FloatToObjectFunction extends V> function)
{
return new CollectFloatToObjectIterable(this, function);
}
public double sum()
{
double result = 0.0;
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey)
{
result += EMPTY_KEY;
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey)
{
result += REMOVED_KEY;
}
}
for (float key : FloatBooleanHashMap.this.keys)
{
if (isNonSentinel(key))
{
result += key;
}
}
return result;
}
public float max()
{
if (this.isEmpty())
{
throw new NoSuchElementException();
}
FloatIterator iterator = this.floatIterator();
float max = iterator.next();
while (iterator.hasNext())
{
float value = iterator.next();
if (Float.compare(max, value) < 0)
{
max = value;
}
}
return max;
}
public float min()
{
if (this.isEmpty())
{
throw new NoSuchElementException();
}
FloatIterator iterator = this.floatIterator();
float min = iterator.next();
while (iterator.hasNext())
{
float value = iterator.next();
if (Float.compare(value, min) < 0)
{
min = value;
}
}
return min;
}
public float minIfEmpty(float defaultValue)
{
if (this.isEmpty())
{
return defaultValue;
}
return this.min();
}
public float maxIfEmpty(float defaultValue)
{
if (this.isEmpty())
{
return defaultValue;
}
return this.max();
}
public double average()
{
if (this.isEmpty())
{
throw new ArithmeticException();
}
return this.sum() / (double) this.size();
}
public double median()
{
if (this.isEmpty())
{
throw new ArithmeticException();
}
float[] sortedArray = this.toSortedArray();
int middleIndex = sortedArray.length >> 1;
if (sortedArray.length > 1 && (sortedArray.length & 1) == 0)
{
float first = sortedArray[middleIndex];
float second = sortedArray[middleIndex - 1];
return ((double) first + (double) second) / 2.0;
}
return (double) sortedArray[middleIndex];
}
public float[] toSortedArray()
{
float[] array = this.toArray();
Arrays.sort(array);
return array;
}
public float[] toArray()
{
int size = FloatBooleanHashMap.this.size();
final float[] result = new float[size];
FloatBooleanHashMap.this.forEachKey(new FloatProcedure()
{
private int index;
public void value(float each)
{
result[this.index] = each;
this.index++;
}
});
return result;
}
public T injectInto(T injectedValue, ObjectFloatToObjectFunction super T, ? extends T> function)
{
T result = injectedValue;
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey)
{
result = function.valueOf(result, EMPTY_KEY);
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey)
{
result = function.valueOf(result, REMOVED_KEY);
}
}
for (int i = 0; i < FloatBooleanHashMap.this.keys.length; i++)
{
if (isNonSentinel(FloatBooleanHashMap.this.keys[i]))
{
result = function.valueOf(result, FloatBooleanHashMap.this.keys[i]);
}
}
return result;
}
public MutableFloatList toList()
{
return FloatArrayList.newList(this);
}
public MutableFloatList toSortedList()
{
return FloatArrayList.newList(this).sortThis();
}
public MutableFloatSet toSet()
{
return FloatHashSet.newSet(this);
}
public MutableFloatBag toBag()
{
return FloatHashBag.newBag(this);
}
public LazyFloatIterable asLazy()
{
return this;
}
}
public MutableFloatSet keySet()
{
return new KeySet();
}
private class KeySet implements MutableFloatSet
{
public FloatIterator floatIterator()
{
return new KeySetIterator();
}
public void forEach(FloatProcedure procedure)
{
FloatBooleanHashMap.this.forEachKey(procedure);
}
public int count(FloatPredicate predicate)
{
int count = 0;
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
count++;
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
count++;
}
}
for (float key : FloatBooleanHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
count++;
}
}
return count;
}
public boolean anySatisfy(FloatPredicate predicate)
{
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
return true;
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
return true;
}
}
for (float key : FloatBooleanHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
return true;
}
}
return false;
}
public boolean allSatisfy(FloatPredicate predicate)
{
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey && !predicate.accept(EMPTY_KEY))
{
return false;
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey && !predicate.accept(REMOVED_KEY))
{
return false;
}
}
for (float key : FloatBooleanHashMap.this.keys)
{
if (isNonSentinel(key) && !predicate.accept(key))
{
return false;
}
}
return true;
}
public boolean noneSatisfy(FloatPredicate predicate)
{
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
return false;
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
return false;
}
}
for (float key : FloatBooleanHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
return false;
}
}
return true;
}
public boolean add(float element)
{
throw new UnsupportedOperationException("Cannot call add() on " + this.getClass().getSimpleName());
}
public boolean addAll(float... source)
{
throw new UnsupportedOperationException("Cannot call addAll() on " + this.getClass().getSimpleName());
}
public boolean addAll(FloatIterable source)
{
throw new UnsupportedOperationException("Cannot call addAll() on " + this.getClass().getSimpleName());
}
public boolean remove(float key)
{
int oldSize = FloatBooleanHashMap.this.size();
FloatBooleanHashMap.this.removeKey(key);
return oldSize != FloatBooleanHashMap.this.size();
}
public boolean removeAll(FloatIterable source)
{
int oldSize = FloatBooleanHashMap.this.size();
FloatIterator iterator = source.floatIterator();
while (iterator.hasNext())
{
FloatBooleanHashMap.this.removeKey(iterator.next());
}
return oldSize != FloatBooleanHashMap.this.size();
}
public boolean removeAll(float... source)
{
int oldSize = FloatBooleanHashMap.this.size();
for (float item : source)
{
FloatBooleanHashMap.this.removeKey(item);
}
return oldSize != FloatBooleanHashMap.this.size();
}
public boolean retainAll(FloatIterable source)
{
int oldSize = FloatBooleanHashMap.this.size();
final FloatSet sourceSet = source instanceof FloatSet ? (FloatSet) source : source.toSet();
FloatBooleanHashMap retained = FloatBooleanHashMap.this.select(new FloatBooleanPredicate()
{
public boolean accept(float key, boolean value)
{
return sourceSet.contains(key);
}
});
if (retained.size() != oldSize)
{
FloatBooleanHashMap.this.keys = retained.keys;
FloatBooleanHashMap.this.values = retained.values;
FloatBooleanHashMap.this.maxSize = retained.maxSize;
FloatBooleanHashMap.this.occupied = retained.occupied;
FloatBooleanHashMap.this.sentinelValues = retained.sentinelValues;
return true;
}
return false;
}
public boolean retainAll(float... source)
{
return this.retainAll(FloatHashSet.newSetWith(source));
}
public void clear()
{
FloatBooleanHashMap.this.clear();
}
public MutableFloatSet select(FloatPredicate predicate)
{
MutableFloatSet result = new FloatHashSet();
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
result.add(EMPTY_KEY);
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
result.add(REMOVED_KEY);
}
}
for (float key : FloatBooleanHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
result.add(key);
}
}
return result;
}
public MutableFloatSet reject(FloatPredicate predicate)
{
MutableFloatSet result = new FloatHashSet();
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey && !predicate.accept(EMPTY_KEY))
{
result.add(EMPTY_KEY);
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey && !predicate.accept(REMOVED_KEY))
{
result.add(REMOVED_KEY);
}
}
for (float key : FloatBooleanHashMap.this.keys)
{
if (isNonSentinel(key) && !predicate.accept(key))
{
result.add(key);
}
}
return result;
}
public MutableFloatSet with(float element)
{
throw new UnsupportedOperationException("Cannot call with() on " + this.getClass().getSimpleName());
}
public MutableFloatSet without(float element)
{
throw new UnsupportedOperationException("Cannot call without() on " + this.getClass().getSimpleName());
}
public MutableFloatSet withAll(FloatIterable elements)
{
throw new UnsupportedOperationException("Cannot call withAll() on " + this.getClass().getSimpleName());
}
public MutableFloatSet withoutAll(FloatIterable elements)
{
throw new UnsupportedOperationException("Cannot call withoutAll() on " + this.getClass().getSimpleName());
}
public float detectIfNone(FloatPredicate predicate, float ifNone)
{
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
return EMPTY_KEY;
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
return REMOVED_KEY;
}
}
for (float key : FloatBooleanHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
return key;
}
}
return ifNone;
}
public MutableSet collect(FloatToObjectFunction extends V> function)
{
MutableSet result = Sets.mutable.with();
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey)
{
result.add(function.valueOf(EMPTY_KEY));
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey)
{
result.add(function.valueOf(REMOVED_KEY));
}
}
for (float key : FloatBooleanHashMap.this.keys)
{
if (isNonSentinel(key))
{
result.add(function.valueOf(key));
}
}
return result;
}
public MutableFloatSet asUnmodifiable()
{
return UnmodifiableFloatSet.of(this);
}
public MutableFloatSet asSynchronized()
{
return SynchronizedFloatSet.of(this);
}
public double sum()
{
double sum = 0.0;
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey)
{
sum += EMPTY_KEY;
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey)
{
sum += REMOVED_KEY;
}
}
for (float key : FloatBooleanHashMap.this.keys)
{
if (isNonSentinel(key))
{
sum += key;
}
}
return sum;
}
public float max()
{
if (FloatBooleanHashMap.this.isEmpty())
{
throw new NoSuchElementException();
}
float max = 0;
boolean isMaxSet = false;
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey)
{
max = EMPTY_KEY;
isMaxSet = true;
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey && (!isMaxSet || Float.compare(max, REMOVED_KEY) < 0))
{
max = REMOVED_KEY;
isMaxSet = true;
}
}
for (int i = 0; i < FloatBooleanHashMap.this.keys.length; i++)
{
if (isNonSentinel(FloatBooleanHashMap.this.keys[i]) && (!isMaxSet || Float.compare(max, FloatBooleanHashMap.this.keys[i]) < 0))
{
max = FloatBooleanHashMap.this.keys[i];
isMaxSet = true;
}
}
return max;
}
public float maxIfEmpty(float defaultValue)
{
if (FloatBooleanHashMap.this.isEmpty())
{
return defaultValue;
}
return this.max();
}
public float min()
{
if (FloatBooleanHashMap.this.isEmpty())
{
throw new NoSuchElementException();
}
float min = 0;
boolean isMinSet = false;
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey)
{
min = EMPTY_KEY;
isMinSet = true;
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey && (!isMinSet || Float.compare(REMOVED_KEY, min) < 0))
{
min = REMOVED_KEY;
isMinSet = true;
}
}
for (int i = 0; i < FloatBooleanHashMap.this.keys.length; i++)
{
if (isNonSentinel(FloatBooleanHashMap.this.keys[i]) && (!isMinSet || Float.compare(FloatBooleanHashMap.this.keys[i], min) < 0))
{
min = FloatBooleanHashMap.this.keys[i];
isMinSet = true;
}
}
return min;
}
public float minIfEmpty(float defaultValue)
{
if (FloatBooleanHashMap.this.isEmpty())
{
return defaultValue;
}
return this.min();
}
public double average()
{
if (this.isEmpty())
{
throw new ArithmeticException();
}
return this.sum() / (double) this.size();
}
public double median()
{
if (this.isEmpty())
{
throw new ArithmeticException();
}
float[] sortedArray = this.toSortedArray();
int middleIndex = sortedArray.length >> 1;
if (sortedArray.length > 1 && (sortedArray.length & 1) == 0)
{
float first = sortedArray[middleIndex];
float second = sortedArray[middleIndex - 1];
return ((double) first + (double) second) / 2.0;
}
return (double) sortedArray[middleIndex];
}
public float[] toSortedArray()
{
float[] array = this.toArray();
Arrays.sort(array);
return array;
}
public MutableFloatList toSortedList()
{
return FloatArrayList.newList(this).sortThis();
}
public float[] toArray()
{
int size = FloatBooleanHashMap.this.size();
final float[] result = new float[size];
FloatBooleanHashMap.this.forEachKey(new FloatProcedure()
{
private int index;
public void value(float each)
{
result[this.index] = each;
this.index++;
}
});
return result;
}
public boolean contains(float value)
{
return FloatBooleanHashMap.this.containsKey(value);
}
public boolean containsAll(float... source)
{
for (float item : source)
{
if (!FloatBooleanHashMap.this.containsKey(item))
{
return false;
}
}
return true;
}
public boolean containsAll(FloatIterable source)
{
FloatIterator iterator = source.floatIterator();
while (iterator.hasNext())
{
if (!FloatBooleanHashMap.this.containsKey(iterator.next()))
{
return false;
}
}
return true;
}
public MutableFloatList toList()
{
return FloatArrayList.newList(this);
}
public MutableFloatSet toSet()
{
return FloatHashSet.newSet(this);
}
public MutableFloatBag toBag()
{
return FloatHashBag.newBag(this);
}
public LazyFloatIterable asLazy()
{
return new LazyFloatIterableAdapter(this);
}
public T injectInto(T injectedValue, ObjectFloatToObjectFunction super T, ? extends T> function)
{
T result = injectedValue;
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey)
{
result = function.valueOf(result, EMPTY_KEY);
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey)
{
result = function.valueOf(result, REMOVED_KEY);
}
}
for (int i = 0; i < FloatBooleanHashMap.this.keys.length; i++)
{
if (isNonSentinel(FloatBooleanHashMap.this.keys[i]))
{
result = function.valueOf(result, FloatBooleanHashMap.this.keys[i]);
}
}
return result;
}
public FloatSet freeze()
{
throw new UnsupportedOperationException(this.getClass().getSimpleName() + ".freeze() not implemented yet");
}
public ImmutableFloatSet toImmutable()
{
return FloatSets.immutable.withAll(this);
}
public int size()
{
return FloatBooleanHashMap.this.size();
}
public boolean isEmpty()
{
return FloatBooleanHashMap.this.isEmpty();
}
public boolean notEmpty()
{
return FloatBooleanHashMap.this.notEmpty();
}
@Override
public boolean equals(Object obj)
{
if (this == obj)
{
return true;
}
if (!(obj instanceof FloatSet))
{
return false;
}
FloatSet other = (FloatSet) obj;
return this.size() == other.size() && this.containsAll(other.toArray());
}
@Override
public int hashCode()
{
int result = 0;
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey)
{
result += Float.floatToIntBits(EMPTY_KEY);
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey)
{
result += Float.floatToIntBits(REMOVED_KEY);
}
}
for (int i = 0; i < FloatBooleanHashMap.this.keys.length; i++)
{
if (isNonSentinel(FloatBooleanHashMap.this.keys[i]))
{
result += Float.floatToIntBits(FloatBooleanHashMap.this.keys[i]);
}
}
return result;
}
@Override
public String toString()
{
return this.makeString("[", ", ", "]");
}
public String makeString()
{
return this.makeString(", ");
}
public String makeString(String separator)
{
return this.makeString("", separator, "");
}
public String makeString(String start, String separator, String end)
{
Appendable stringBuilder = new StringBuilder();
this.appendString(stringBuilder, start, separator, end);
return stringBuilder.toString();
}
public void appendString(Appendable appendable)
{
this.appendString(appendable, ", ");
}
public void appendString(Appendable appendable, String separator)
{
this.appendString(appendable, "", separator, "");
}
public void appendString(Appendable appendable, String start, String separator, String end)
{
try
{
appendable.append(start);
boolean first = true;
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey)
{
appendable.append(String.valueOf(EMPTY_KEY));
first = false;
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey)
{
if (!first)
{
appendable.append(separator);
}
appendable.append(String.valueOf(REMOVED_KEY));
first = false;
}
}
for (float key : FloatBooleanHashMap.this.keys)
{
if (isNonSentinel(key))
{
if (!first)
{
appendable.append(separator);
}
appendable.append(String.valueOf(key));
first = false;
}
}
appendable.append(end);
}
catch (IOException e)
{
throw new RuntimeException(e);
}
}
}
public MutableBooleanCollection values()
{
return new ValuesCollection();
}
private class ValuesCollection implements MutableBooleanCollection
{
public void clear()
{
FloatBooleanHashMap.this.clear();
}
public MutableBooleanCollection select(BooleanPredicate predicate)
{
return FloatBooleanHashMap.this.select(predicate);
}
public MutableBooleanCollection reject(BooleanPredicate predicate)
{
return FloatBooleanHashMap.this.reject(predicate);
}
public boolean detectIfNone(BooleanPredicate predicate, boolean ifNone)
{
return FloatBooleanHashMap.this.detectIfNone(predicate, ifNone);
}
public MutableCollection collect(BooleanToObjectFunction extends V> function)
{
return FloatBooleanHashMap.this.collect(function);
}
public MutableBooleanCollection with(boolean element)
{
throw new UnsupportedOperationException("Cannot call with() on " + this.getClass().getSimpleName());
}
public MutableBooleanCollection without(boolean element)
{
throw new UnsupportedOperationException("Cannot call without() on " + this.getClass().getSimpleName());
}
public MutableBooleanCollection withAll(BooleanIterable elements)
{
throw new UnsupportedOperationException("Cannot call withAll() on " + this.getClass().getSimpleName());
}
public MutableBooleanCollection withoutAll(BooleanIterable elements)
{
throw new UnsupportedOperationException("Cannot call withoutAll() on " + this.getClass().getSimpleName());
}
public MutableBooleanCollection asSynchronized()
{
return SynchronizedBooleanCollection.of(this);
}
public MutableBooleanCollection asUnmodifiable()
{
return UnmodifiableBooleanCollection.of(this);
}
public ImmutableBooleanCollection toImmutable()
{
return BooleanLists.immutable.withAll(this);
}
public boolean contains(boolean value)
{
return FloatBooleanHashMap.this.containsValue(value);
}
public boolean containsAll(boolean... source)
{
return FloatBooleanHashMap.this.containsAll(source);
}
public boolean containsAll(BooleanIterable source)
{
return FloatBooleanHashMap.this.containsAll(source);
}
public MutableBooleanList toList()
{
return FloatBooleanHashMap.this.toList();
}
public MutableBooleanSet toSet()
{
return FloatBooleanHashMap.this.toSet();
}
public MutableBooleanBag toBag()
{
return FloatBooleanHashMap.this.toBag();
}
public LazyBooleanIterable asLazy()
{
return new LazyBooleanIterableAdapter(this);
}
public V injectInto(V injectedValue, ObjectBooleanToObjectFunction super V, ? extends V> function)
{
return FloatBooleanHashMap.this.injectInto(injectedValue, function);
}
public boolean isEmpty()
{
return FloatBooleanHashMap.this.isEmpty();
}
public boolean notEmpty()
{
return FloatBooleanHashMap.this.notEmpty();
}
public String makeString()
{
return this.makeString(", ");
}
public String makeString(String separator)
{
return this.makeString("", separator, "");
}
public String makeString(String start, String separator, String end)
{
Appendable stringBuilder = new StringBuilder();
this.appendString(stringBuilder, start, separator, end);
return stringBuilder.toString();
}
public void appendString(Appendable appendable)
{
this.appendString(appendable, ", ");
}
public void appendString(Appendable appendable, String separator)
{
this.appendString(appendable, "", separator, "");
}
public void appendString(Appendable appendable, String start, String separator, String end)
{
try
{
appendable.append(start);
boolean first = true;
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey)
{
appendable.append(String.valueOf(FloatBooleanHashMap.this.sentinelValues.zeroValue));
first = false;
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey)
{
if (!first)
{
appendable.append(separator);
}
appendable.append(String.valueOf(FloatBooleanHashMap.this.sentinelValues.oneValue));
first = false;
}
}
for (int i = 0; i < FloatBooleanHashMap.this.keys.length; i++)
{
float key = FloatBooleanHashMap.this.keys[i];
if (isNonSentinel(key))
{
if (!first)
{
appendable.append(separator);
}
appendable.append(String.valueOf(FloatBooleanHashMap.this.values.get(i)));
first = false;
}
}
appendable.append(end);
}
catch (IOException e)
{
throw new RuntimeException(e);
}
}
public BooleanIterator booleanIterator()
{
return FloatBooleanHashMap.this.booleanIterator();
}
public void forEach(BooleanProcedure procedure)
{
FloatBooleanHashMap.this.forEach(procedure);
}
public int count(BooleanPredicate predicate)
{
return FloatBooleanHashMap.this.count(predicate);
}
public boolean anySatisfy(BooleanPredicate predicate)
{
return FloatBooleanHashMap.this.anySatisfy(predicate);
}
public boolean allSatisfy(BooleanPredicate predicate)
{
return FloatBooleanHashMap.this.allSatisfy(predicate);
}
public boolean noneSatisfy(BooleanPredicate predicate)
{
return FloatBooleanHashMap.this.noneSatisfy(predicate);
}
public boolean add(boolean element)
{
throw new UnsupportedOperationException("Cannot call add() on " + this.getClass().getSimpleName());
}
public boolean addAll(boolean... source)
{
throw new UnsupportedOperationException("Cannot call addAll() on " + this.getClass().getSimpleName());
}
public boolean addAll(BooleanIterable source)
{
throw new UnsupportedOperationException("Cannot call addAll() on " + this.getClass().getSimpleName());
}
public boolean remove(boolean item)
{
int oldSize = FloatBooleanHashMap.this.size();
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey && item == FloatBooleanHashMap.this.sentinelValues.zeroValue)
{
FloatBooleanHashMap.this.removeKey(EMPTY_KEY);
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey && item == FloatBooleanHashMap.this.sentinelValues.oneValue)
{
FloatBooleanHashMap.this.removeKey(REMOVED_KEY);
}
}
for (int i = 0; i < FloatBooleanHashMap.this.keys.length; i++)
{
if (isNonSentinel(FloatBooleanHashMap.this.keys[i]) && item == FloatBooleanHashMap.this.values.get(i))
{
FloatBooleanHashMap.this.removeKey(FloatBooleanHashMap.this.keys[i]);
}
}
return oldSize != FloatBooleanHashMap.this.size();
}
public boolean removeAll(BooleanIterable source)
{
int oldSize = FloatBooleanHashMap.this.size();
BooleanIterator iterator = source.booleanIterator();
while (iterator.hasNext())
{
this.remove(iterator.next());
}
return oldSize != FloatBooleanHashMap.this.size();
}
public boolean removeAll(boolean... source)
{
int oldSize = FloatBooleanHashMap.this.size();
for (boolean item : source)
{
this.remove(item);
}
return oldSize != FloatBooleanHashMap.this.size();
}
public boolean retainAll(BooleanIterable source)
{
int oldSize = FloatBooleanHashMap.this.size();
final BooleanSet sourceSet = source instanceof BooleanSet ? (BooleanSet) source : source.toSet();
FloatBooleanHashMap retained = FloatBooleanHashMap.this.select(new FloatBooleanPredicate()
{
public boolean accept(float key, boolean value)
{
return sourceSet.contains(value);
}
});
if (retained.size() != oldSize)
{
FloatBooleanHashMap.this.keys = retained.keys;
FloatBooleanHashMap.this.values = retained.values;
FloatBooleanHashMap.this.maxSize = retained.maxSize;
FloatBooleanHashMap.this.occupied = retained.occupied;
FloatBooleanHashMap.this.sentinelValues = retained.sentinelValues;
return true;
}
return false;
}
public boolean retainAll(boolean... source)
{
return this.retainAll(BooleanHashSet.newSetWith(source));
}
public int size()
{
return FloatBooleanHashMap.this.size();
}
public boolean[] toArray()
{
return FloatBooleanHashMap.this.toArray();
}
}
private class KeySetIterator implements FloatIterator
{
private int count;
private int position;
private boolean handledZero;
private boolean handledOne;
public boolean hasNext()
{
return this.count < FloatBooleanHashMap.this.size();
}
public float next()
{
if (!this.hasNext())
{
throw new NoSuchElementException("next() called, but the iterator is exhausted");
}
this.count++;
if (!this.handledZero)
{
this.handledZero = true;
if (FloatBooleanHashMap.this.containsKey(EMPTY_KEY))
{
return EMPTY_KEY;
}
}
if (!this.handledOne)
{
this.handledOne = true;
if (FloatBooleanHashMap.this.containsKey(REMOVED_KEY))
{
return REMOVED_KEY;
}
}
float[] keys = FloatBooleanHashMap.this.keys;
while (!isNonSentinel(keys[this.position]))
{
this.position++;
}
float result = keys[this.position];
this.position++;
return result;
}
}
private class KeyValuesView extends AbstractLazyIterable
{
public void forEach(Procedure super FloatBooleanPair> procedure)
{
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey)
{
procedure.value(PrimitiveTuples.pair(EMPTY_KEY, FloatBooleanHashMap.this.sentinelValues.zeroValue));
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey)
{
procedure.value(PrimitiveTuples.pair(REMOVED_KEY, FloatBooleanHashMap.this.sentinelValues.oneValue));
}
}
for (int i = 0; i < FloatBooleanHashMap.this.keys.length; i++)
{
if (isNonSentinel(FloatBooleanHashMap.this.keys[i]))
{
procedure.value(PrimitiveTuples.pair(FloatBooleanHashMap.this.keys[i], FloatBooleanHashMap.this.values.get(i)));
}
}
}
public void forEachWithIndex(ObjectIntProcedure super FloatBooleanPair> objectIntProcedure)
{
int index = 0;
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey)
{
objectIntProcedure.value(PrimitiveTuples.pair(EMPTY_KEY, FloatBooleanHashMap.this.sentinelValues.zeroValue), index);
index++;
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey)
{
objectIntProcedure.value(PrimitiveTuples.pair(REMOVED_KEY, FloatBooleanHashMap.this.sentinelValues.oneValue), index);
index++;
}
}
for (int i = 0; i < FloatBooleanHashMap.this.keys.length; i++)
{
if (isNonSentinel(FloatBooleanHashMap.this.keys[i]))
{
objectIntProcedure.value(PrimitiveTuples.pair(FloatBooleanHashMap.this.keys[i], FloatBooleanHashMap.this.values.get(i)), index);
index++;
}
}
}
public void forEachWith(Procedure2 super FloatBooleanPair, ? super P> procedure, P parameter)
{
if (FloatBooleanHashMap.this.sentinelValues != null)
{
if (FloatBooleanHashMap.this.sentinelValues.containsZeroKey)
{
procedure.value(PrimitiveTuples.pair(EMPTY_KEY, FloatBooleanHashMap.this.sentinelValues.zeroValue), parameter);
}
if (FloatBooleanHashMap.this.sentinelValues.containsOneKey)
{
procedure.value(PrimitiveTuples.pair(REMOVED_KEY, FloatBooleanHashMap.this.sentinelValues.oneValue), parameter);
}
}
for (int i = 0; i < FloatBooleanHashMap.this.keys.length; i++)
{
if (isNonSentinel(FloatBooleanHashMap.this.keys[i]))
{
procedure.value(PrimitiveTuples.pair(FloatBooleanHashMap.this.keys[i], FloatBooleanHashMap.this.values.get(i)), parameter);
}
}
}
public Iterator iterator()
{
return new InternalKeyValuesIterator();
}
public class InternalKeyValuesIterator implements Iterator
{
private int count;
private int position;
private boolean handledZero;
private boolean handledOne;
public FloatBooleanPair next()
{
if (!this.hasNext())
{
throw new NoSuchElementException("next() called, but the iterator is exhausted");
}
this.count++;
if (!this.handledZero)
{
this.handledZero = true;
if (FloatBooleanHashMap.this.containsKey(EMPTY_KEY))
{
return PrimitiveTuples.pair(EMPTY_KEY, FloatBooleanHashMap.this.sentinelValues.zeroValue);
}
}
if (!this.handledOne)
{
this.handledOne = true;
if (FloatBooleanHashMap.this.containsKey(REMOVED_KEY))
{
return PrimitiveTuples.pair(REMOVED_KEY, FloatBooleanHashMap.this.sentinelValues.oneValue);
}
}
float[] keys = FloatBooleanHashMap.this.keys;
while (!isNonSentinel(keys[this.position]))
{
this.position++;
}
FloatBooleanPair result = PrimitiveTuples.pair(keys[this.position], FloatBooleanHashMap.this.values.get(this.position));
this.position++;
return result;
}
public void remove()
{
throw new UnsupportedOperationException("Cannot call remove() on " + this.getClass().getSimpleName());
}
public boolean hasNext()
{
return this.count != FloatBooleanHashMap.this.size();
}
}
}
}