com.gs.collections.impl.map.mutable.primitive.DoubleLongHashMap 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.Iterator;
import java.util.NoSuchElementException;
import com.gs.collections.api.DoubleIterable;
import com.gs.collections.api.LazyDoubleIterable;
import com.gs.collections.api.LazyLongIterable;
import com.gs.collections.api.LongIterable;
import com.gs.collections.api.LazyIterable;
import com.gs.collections.api.RichIterable;
import com.gs.collections.api.bag.primitive.MutableDoubleBag;
import com.gs.collections.api.bag.primitive.MutableLongBag;
import com.gs.collections.api.block.function.primitive.DoubleToObjectFunction;
import com.gs.collections.api.block.function.primitive.DoubleToLongFunction;
import com.gs.collections.api.block.function.primitive.LongFunction;
import com.gs.collections.api.block.function.primitive.LongFunction0;
import com.gs.collections.api.block.function.primitive.LongToLongFunction;
import com.gs.collections.api.block.function.primitive.LongToObjectFunction;
import com.gs.collections.api.block.function.primitive.ObjectLongToObjectFunction;
import com.gs.collections.api.block.function.primitive.ObjectDoubleToObjectFunction;
import com.gs.collections.api.block.predicate.primitive.DoubleLongPredicate;
import com.gs.collections.api.block.predicate.primitive.DoublePredicate;
import com.gs.collections.api.block.predicate.primitive.LongPredicate;
import com.gs.collections.api.block.procedure.Procedure;
import com.gs.collections.api.block.procedure.Procedure2;
import com.gs.collections.api.block.procedure.primitive.DoubleProcedure;
import com.gs.collections.api.block.procedure.primitive.DoubleLongProcedure;
import com.gs.collections.api.block.procedure.primitive.LongProcedure;
import com.gs.collections.api.block.procedure.primitive.ObjectIntProcedure;
import com.gs.collections.api.collection.MutableCollection;
import com.gs.collections.api.collection.primitive.ImmutableLongCollection;
import com.gs.collections.api.collection.primitive.MutableLongCollection;
import com.gs.collections.api.iterator.DoubleIterator;
import com.gs.collections.api.iterator.LongIterator;
import com.gs.collections.api.list.primitive.MutableDoubleList;
import com.gs.collections.api.list.primitive.MutableLongList;
import com.gs.collections.api.map.primitive.DoubleLongMap;
import com.gs.collections.api.map.primitive.ImmutableDoubleLongMap;
import com.gs.collections.api.map.primitive.MutableDoubleLongMap;
import com.gs.collections.api.set.MutableSet;
import com.gs.collections.api.set.primitive.DoubleSet;
import com.gs.collections.api.set.primitive.LongSet;
import com.gs.collections.api.set.primitive.ImmutableDoubleSet;
import com.gs.collections.api.set.primitive.MutableDoubleSet;
import com.gs.collections.api.tuple.primitive.DoubleLongPair;
import com.gs.collections.api.set.primitive.MutableLongSet;
import com.gs.collections.impl.bag.mutable.primitive.DoubleHashBag;
import com.gs.collections.impl.bag.mutable.primitive.LongHashBag;
import com.gs.collections.impl.block.factory.primitive.DoublePredicates;
import com.gs.collections.impl.collection.mutable.primitive.SynchronizedLongCollection;
import com.gs.collections.impl.collection.mutable.primitive.UnmodifiableLongCollection;
import com.gs.collections.impl.factory.Sets;
import com.gs.collections.impl.factory.primitive.LongLists;
import com.gs.collections.impl.factory.primitive.DoubleLongMaps;
import com.gs.collections.impl.factory.primitive.DoubleSets;
import com.gs.collections.impl.lazy.AbstractLazyIterable;
import com.gs.collections.impl.lazy.primitive.AbstractLazyDoubleIterable;
import com.gs.collections.impl.lazy.primitive.LazyLongIterableAdapter;
import com.gs.collections.impl.lazy.primitive.LazyDoubleIterableAdapter;
import com.gs.collections.impl.list.mutable.FastList;
import com.gs.collections.impl.list.mutable.primitive.DoubleArrayList;
import com.gs.collections.impl.list.mutable.primitive.LongArrayList;
import com.gs.collections.impl.set.mutable.primitive.DoubleHashSet;
import com.gs.collections.impl.set.mutable.primitive.SynchronizedDoubleSet;
import com.gs.collections.impl.set.mutable.primitive.UnmodifiableDoubleSet;
import com.gs.collections.impl.set.mutable.primitive.LongHashSet;
import com.gs.collections.impl.tuple.primitive.PrimitiveTuples;
/**
* This file was automatically generated from template file primitivePrimitiveHashMap.stg.
*
* @since 3.0.
*/
public class DoubleLongHashMap implements MutableDoubleLongMap, Externalizable
{
static final long EMPTY_VALUE = 0L;
private static final long serialVersionUID = 1L;
private static final double EMPTY_KEY = 0.0;
private static final double REMOVED_KEY = 1.0;
private static final int OCCUPIED_DATA_RATIO = 2;
private static final int OCCUPIED_SENTINEL_RATIO = 4;
private static final int DEFAULT_INITIAL_CAPACITY = 8;
private double[] keys;
private long[] values;
private int occupiedWithData;
private int occupiedWithSentinels;
private SentinelValues sentinelValues;
public DoubleLongHashMap()
{
this.allocateTable(DEFAULT_INITIAL_CAPACITY << 1);
}
public DoubleLongHashMap(int initialCapacity)
{
if (initialCapacity < 0)
{
throw new IllegalArgumentException("initial capacity cannot be less than 0");
}
int capacity = this.smallestPowerOfTwoGreaterThan(this.fastCeil(initialCapacity * OCCUPIED_DATA_RATIO));
this.allocateTable(capacity);
}
private int smallestPowerOfTwoGreaterThan(int n)
{
return n > 1 ? Integer.highestOneBit(n - 1) << 1 : 1;
}
public DoubleLongHashMap(DoubleLongMap map)
{
this(Math.max(map.size(), DEFAULT_INITIAL_CAPACITY));
this.putAll(map);
}
private int fastCeil(float v)
{
int possibleResult = (int) v;
if (v - possibleResult > 0.0F)
{
possibleResult++;
}
return possibleResult;
}
public static DoubleLongHashMap newWithKeysValues(double key1, long value1)
{
return new DoubleLongHashMap(1).withKeyValue(key1, value1);
}
public static DoubleLongHashMap newWithKeysValues(double key1, long value1, double key2, long value2)
{
return new DoubleLongHashMap(2).withKeysValues(key1, value1, key2, value2);
}
public static DoubleLongHashMap newWithKeysValues(double key1, long value1, double key2, long value2, double key3, long value3)
{
return new DoubleLongHashMap(3).withKeysValues(key1, value1, key2, value2, key3, value3);
}
public static DoubleLongHashMap newWithKeysValues(double key1, long value1, double key2, long value2, double key3, long value3, double key4, long value4)
{
return new DoubleLongHashMap(4).withKeysValues(key1, value1, key2, value2, key3, value3, key4, value4);
}
@Override
public boolean equals(Object obj)
{
if (this == obj)
{
return true;
}
if (!(obj instanceof DoubleLongMap))
{
return false;
}
DoubleLongMap other = (DoubleLongMap) 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++)
{
double key = this.keys[i];
if (isNonSentinel(key) && (!other.containsKey(key) || this.values[i] != other.getOrThrow(key)))
{
return false;
}
}
return true;
}
@Override
public int hashCode()
{
int result = 0;
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
result += (int) (Double.doubleToLongBits(EMPTY_KEY) ^ Double.doubleToLongBits(EMPTY_KEY) >>> 32) ^ (int) (this.sentinelValues.zeroValue ^ this.sentinelValues.zeroValue >>> 32);
}
if (this.sentinelValues.containsOneKey)
{
result += (int) (Double.doubleToLongBits(REMOVED_KEY) ^ Double.doubleToLongBits(REMOVED_KEY) >>> 32) ^ (int) (this.sentinelValues.oneValue ^ this.sentinelValues.oneValue >>> 32);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
result += (int) (Double.doubleToLongBits(this.keys[i]) ^ Double.doubleToLongBits(this.keys[i]) >>> 32) ^ (int) (this.values[i] ^ this.values[i] >>> 32);
}
}
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++)
{
double key = this.keys[i];
if (isNonSentinel(key))
{
if (!first)
{
appendable.append(", ");
}
appendable.append(String.valueOf(key)).append("=").append(String.valueOf(this.values[i]));
first = false;
}
}
appendable.append("}");
return appendable.toString();
}
public int size()
{
return this.occupiedWithData + (this.sentinelValues == null ? 0 : this.sentinelValues.size());
}
public boolean isEmpty()
{
return this.occupiedWithData == 0 && (this.sentinelValues == null || this.sentinelValues.size() == 0);
}
public boolean notEmpty()
{
return this.occupiedWithData != 0 || (this.sentinelValues != null && this.sentinelValues.size() != 0);
}
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++)
{
double key = this.keys[i];
if (isNonSentinel(key))
{
if (!first)
{
appendable.append(separator);
}
appendable.append(String.valueOf(this.values[i]));
first = false;
}
}
appendable.append(end);
}
catch (IOException e)
{
throw new RuntimeException(e);
}
}
public LongIterator longIterator()
{
return new InternalLongIterator();
}
public long[] toArray()
{
long[] array = new long[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[i];
index++;
}
}
return array;
}
public boolean contains(long value)
{
return this.containsValue(value);
}
public boolean containsAll(long... source)
{
for (long each : source)
{
if (!this.contains(each))
{
return false;
}
}
return true;
}
public boolean containsAll(LongIterable source)
{
return source.allSatisfy(new LongPredicate()
{
public boolean accept(long value)
{
return DoubleLongHashMap.this.contains(value);
}
});
}
public void forEach(LongProcedure procedure)
{
this.forEachValue(procedure);
}
public MutableLongCollection select(LongPredicate predicate)
{
LongArrayList result = new LongArrayList();
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[i]))
{
result.add(this.values[i]);
}
}
return result;
}
public MutableLongCollection reject(LongPredicate predicate)
{
LongArrayList result = new LongArrayList();
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[i]))
{
result.add(this.values[i]);
}
}
return result;
}
public MutableCollection collect(LongToObjectFunction 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[i]));
}
}
return target;
}
public long detectIfNone(LongPredicate predicate, long 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[i]))
{
return this.values[i];
}
}
return value;
}
public int count(LongPredicate 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[i]))
{
count++;
}
}
return count;
}
public boolean anySatisfy(LongPredicate 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[i]))
{
return true;
}
}
return false;
}
public boolean allSatisfy(LongPredicate 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[i]))
{
return false;
}
}
return true;
}
public boolean noneSatisfy(LongPredicate 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[i]))
{
return false;
}
}
return true;
}
public V injectInto(V injectedValue, ObjectLongToObjectFunction 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[i]);
}
}
return result;
}
public MutableLongList toList()
{
return LongArrayList.newList(this);
}
public MutableLongSet toSet()
{
return LongHashSet.newSet(this);
}
public MutableLongBag toBag()
{
return LongHashBag.newBag(this);
}
public LazyLongIterable asLazy()
{
return new LazyLongIterableAdapter(this);
}
public void clear()
{
this.sentinelValues = null;
this.occupiedWithData = 0;
this.occupiedWithSentinels = 0;
Arrays.fill(this.keys, EMPTY_KEY);
Arrays.fill(this.values, EMPTY_VALUE);
}
public void put(double key, long value)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
}
this.addEmptyKeyValue(value);
return;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
}
this.addRemovedKeyValue(value);
return;
}
int index = this.probe(key);
if (Double.compare(this.keys[index], key) == 0)
{
// key already present in map
this.values[index] = value;
return;
}
this.addKeyValueAtIndex(key, value, index);
}
public void putAll(DoubleLongMap map)
{
map.forEachKeyValue(new DoubleLongProcedure()
{
public void value(double key, long value)
{
DoubleLongHashMap.this.put(key, value);
}
});
}
public void removeKey(double key)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey)
{
return;
}
this.removeEmptyKey();
return;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsOneKey)
{
return;
}
this.removeRemovedKey();
return;
}
int index = this.probe(key);
if (Double.compare(this.keys[index], key) == 0)
{
this.keys[index] = REMOVED_KEY;
this.values[index] = EMPTY_VALUE;
this.occupiedWithData--;
this.occupiedWithSentinels++;
if (this.occupiedWithSentinels > this.maxOccupiedWithSentinels())
{
this.rehash();
}
}
}
public void remove(double key)
{
this.removeKey(key);
}
public long removeKeyIfAbsent(double key, long value)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey)
{
return value;
}
long oldValue = this.sentinelValues.zeroValue;
this.removeEmptyKey();
return oldValue;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsOneKey)
{
return value;
}
long oldValue = this.sentinelValues.oneValue;
this.removeRemovedKey();
return oldValue;
}
int index = this.probe(key);
if (Double.compare(this.keys[index], key) == 0)
{
this.keys[index] = REMOVED_KEY;
long oldValue = this.values[index];
this.values[index] = EMPTY_VALUE;
this.occupiedWithData--;
this.occupiedWithSentinels++;
if (this.occupiedWithSentinels > this.maxOccupiedWithSentinels())
{
this.rehash();
}
return oldValue;
}
return value;
}
public long getIfAbsentPut(double key, long value)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
this.addEmptyKeyValue(value);
return value;
}
if (this.sentinelValues.containsZeroKey)
{
return this.sentinelValues.zeroValue;
}
this.addEmptyKeyValue(value);
return value;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
this.addRemovedKeyValue(value);
return value;
}
if (this.sentinelValues.containsOneKey)
{
return this.sentinelValues.oneValue;
}
this.addRemovedKeyValue(value);
return value;
}
int index = this.probe(key);
if (Double.compare(this.keys[index], key) == 0)
{
return this.values[index];
}
this.addKeyValueAtIndex(key, value, index);
return value;
}
public long getIfAbsentPut(double key, LongFunction0 function)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
long value = function.value();
this.sentinelValues = new SentinelValues();
this.addEmptyKeyValue(value);
return value;
}
if (this.sentinelValues.containsZeroKey)
{
return this.sentinelValues.zeroValue;
}
long value = function.value();
this.addEmptyKeyValue(value);
return value;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
long value = function.value();
this.sentinelValues = new SentinelValues();
this.addRemovedKeyValue(value);
return value;
}
if (this.sentinelValues.containsOneKey)
{
return this.sentinelValues.oneValue;
}
long value = function.value();
this.addRemovedKeyValue(value);
return value;
}
int index = this.probe(key);
if (Double.compare(this.keys[index], key) == 0)
{
return this.values[index];
}
long value = function.value();
this.addKeyValueAtIndex(key, value, index);
return value;
}
public long getIfAbsentPutWith(double key, LongFunction super P> function, P parameter)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
long value = function.longValueOf(parameter);
this.sentinelValues = new SentinelValues();
this.addEmptyKeyValue(value);
return value;
}
if (this.sentinelValues.containsZeroKey)
{
return this.sentinelValues.zeroValue;
}
long value = function.longValueOf(parameter);
this.addEmptyKeyValue(value);
return value;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
long value = function.longValueOf(parameter);
this.sentinelValues = new SentinelValues();
this.addRemovedKeyValue(value);
return value;
}
if (this.sentinelValues.containsOneKey)
{
return this.sentinelValues.oneValue;
}
long value = function.longValueOf(parameter);
this.addRemovedKeyValue(value);
return value;
}
int index = this.probe(key);
if (Double.compare(this.keys[index], key) == 0)
{
return this.values[index];
}
long value = function.longValueOf(parameter);
this.addKeyValueAtIndex(key, value, index);
return value;
}
public long getIfAbsentPutWithKey(double key, DoubleToLongFunction function)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
long value = function.valueOf(key);
this.sentinelValues = new SentinelValues();
this.addEmptyKeyValue(value);
return value;
}
if (this.sentinelValues.containsZeroKey)
{
return this.sentinelValues.zeroValue;
}
long value = function.valueOf(key);
this.addEmptyKeyValue(value);
return value;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
long value = function.valueOf(key);
this.sentinelValues = new SentinelValues();
this.addRemovedKeyValue(value);
return value;
}
if (this.sentinelValues.containsOneKey)
{
return this.sentinelValues.oneValue;
}
long value = function.valueOf(key);
this.addRemovedKeyValue(value);
return value;
}
int index = this.probe(key);
if (Double.compare(this.keys[index], key) == 0)
{
return this.values[index];
}
long value = function.valueOf(key);
this.addKeyValueAtIndex(key, value, index);
return value;
}
public long addToValue(double key, long toBeAdded)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
this.addEmptyKeyValue(toBeAdded);
}
else if (this.sentinelValues.containsZeroKey)
{
this.sentinelValues.zeroValue += toBeAdded;
}
else
{
this.addEmptyKeyValue(toBeAdded);
}
return this.sentinelValues.zeroValue;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
this.addRemovedKeyValue(toBeAdded);
}
else if (this.sentinelValues.containsOneKey)
{
this.sentinelValues.oneValue += toBeAdded;
}
else
{
this.addRemovedKeyValue(toBeAdded);
}
return this.sentinelValues.oneValue;
}
int index = this.probe(key);
if (Double.compare(this.keys[index], key) == 0)
{
this.values[index] += toBeAdded;
return this.values[index];
}
this.addKeyValueAtIndex(key, toBeAdded, index);
return this.values[index];
}
private void addKeyValueAtIndex(double key, long value, int index)
{
if (Double.compare(this.keys[index], REMOVED_KEY) == 0)
{
this.occupiedWithSentinels--;
}
this.keys[index] = key;
this.values[index] = value;
this.occupiedWithData++;
if (this.occupiedWithData > this.maxOccupiedWithData())
{
this.rehashAndGrow();
}
}
private void addEmptyKeyValue(long value)
{
this.sentinelValues.containsZeroKey = true;
this.sentinelValues.zeroValue = value;
}
private void removeEmptyKey()
{
if (this.sentinelValues.containsOneKey)
{
this.sentinelValues.containsZeroKey = false;
this.sentinelValues.zeroValue = EMPTY_VALUE;
}
else
{
this.sentinelValues = null;
}
}
private void addRemovedKeyValue(long value)
{
this.sentinelValues.containsOneKey = true;
this.sentinelValues.oneValue = value;
}
private void removeRemovedKey()
{
if (this.sentinelValues.containsZeroKey)
{
this.sentinelValues.containsOneKey = false;
this.sentinelValues.oneValue = EMPTY_VALUE;
}
else
{
this.sentinelValues = null;
}
}
public long updateValue(double key, long initialValueIfAbsent, LongToLongFunction function)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
this.addEmptyKeyValue(function.valueOf(initialValueIfAbsent));
}
else if (this.sentinelValues.containsZeroKey)
{
this.sentinelValues.zeroValue = function.valueOf(this.sentinelValues.zeroValue);
}
else
{
this.addEmptyKeyValue(function.valueOf(initialValueIfAbsent));
}
return this.sentinelValues.zeroValue;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
this.addRemovedKeyValue(function.valueOf(initialValueIfAbsent));
}
else if (this.sentinelValues.containsOneKey)
{
this.sentinelValues.oneValue = function.valueOf(this.sentinelValues.oneValue);
}
else
{
this.addRemovedKeyValue(function.valueOf(initialValueIfAbsent));
}
return this.sentinelValues.oneValue;
}
int index = this.probe(key);
if (Double.compare(this.keys[index], key) == 0)
{
this.values[index] = function.valueOf(this.values[index]);
return this.values[index];
}
long value = function.valueOf(initialValueIfAbsent);
this.addKeyValueAtIndex(key, value, index);
return value;
}
public DoubleLongHashMap withKeyValue(double key1, long value1)
{
this.put(key1, value1);
return this;
}
public DoubleLongHashMap withKeysValues(double key1, long value1, double key2, long value2)
{
this.put(key1, value1);
this.put(key2, value2);
return this;
}
public DoubleLongHashMap withKeysValues(double key1, long value1, double key2, long value2, double key3, long value3)
{
this.put(key1, value1);
this.put(key2, value2);
this.put(key3, value3);
return this;
}
public DoubleLongHashMap withKeysValues(double key1, long value1, double key2, long value2, double key3, long value3, double key4, long value4)
{
this.put(key1, value1);
this.put(key2, value2);
this.put(key3, value3);
this.put(key4, value4);
return this;
}
public DoubleLongHashMap withoutKey(double key)
{
this.removeKey(key);
return this;
}
public DoubleLongHashMap withoutAllKeys(DoubleIterable keys)
{
keys.forEach(new DoubleProcedure()
{
public void value(double key)
{
DoubleLongHashMap.this.removeKey(key);
}
});
return this;
}
public MutableDoubleLongMap asUnmodifiable()
{
return new UnmodifiableDoubleLongMap(this);
}
public MutableDoubleLongMap asSynchronized()
{
return new SynchronizedDoubleLongMap(this);
}
public ImmutableDoubleLongMap toImmutable()
{
return DoubleLongMaps.immutable.ofAll(this);
}
public long get(double key)
{
return this.getIfAbsent(key, EMPTY_VALUE);
}
public long getIfAbsent(double key, long 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 (Double.compare(this.keys[index], key) == 0)
{
return this.values[index];
}
return ifAbsent;
}
public long getOrThrow(double 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[index];
}
throw new IllegalStateException("Key " + key + " not present.");
}
public boolean containsKey(double key)
{
if (isEmptyKey(key))
{
return this.sentinelValues != null && this.sentinelValues.containsZeroKey;
}
if (isRemovedKey(key))
{
return this.sentinelValues != null && this.sentinelValues.containsOneKey;
}
return Double.compare(this.keys[this.probe(key)], key) == 0;
}
public boolean containsValue(long value)
{
if (this.sentinelValues != null && this.sentinelValues.containsValue(value))
{
return true;
}
for (int i = 0; i < this.values.length; i++)
{
if (isNonSentinel(this.keys[i]) && this.values[i] == value)
{
return true;
}
}
return false;
}
public void forEachValue(LongProcedure 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[i]);
}
}
}
public void forEachKey(DoubleProcedure procedure)
{
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
procedure.value(EMPTY_KEY);
}
if (this.sentinelValues.containsOneKey)
{
procedure.value(REMOVED_KEY);
}
}
for (double key : this.keys)
{
if (isNonSentinel(key))
{
procedure.value(key);
}
}
}
public void forEachKeyValue(DoubleLongProcedure 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[i]);
}
}
}
public LazyDoubleIterable keysView()
{
return new KeysView();
}
public RichIterable keyValuesView()
{
return new KeyValuesView();
}
public DoubleLongHashMap select(DoubleLongPredicate predicate)
{
DoubleLongHashMap result = new DoubleLongHashMap();
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[i]))
{
result.put(this.keys[i], this.values[i]);
}
}
return result;
}
public DoubleLongHashMap reject(DoubleLongPredicate predicate)
{
DoubleLongHashMap result = new DoubleLongHashMap();
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[i]))
{
result.put(this.keys[i], this.values[i]);
}
}
return result;
}
public long sum()
{
long result = 0L;
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
result += this.sentinelValues.zeroValue;
}
if (this.sentinelValues.containsOneKey)
{
result += this.sentinelValues.oneValue;
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
result += this.values[i];
}
}
return result;
}
public long max()
{
if (this.isEmpty())
{
throw new NoSuchElementException();
}
LongIterator iterator = this.longIterator();
long max = iterator.next();
while (iterator.hasNext())
{
long value = iterator.next();
if (max < value)
{
max = value;
}
}
return max;
}
public long maxIfEmpty(long defaultValue)
{
if (this.isEmpty())
{
return defaultValue;
}
return this.max();
}
public long min()
{
if (this.isEmpty())
{
throw new NoSuchElementException();
}
LongIterator iterator = this.longIterator();
long min = iterator.next();
while (iterator.hasNext())
{
long value = iterator.next();
if (value < min)
{
min = value;
}
}
return min;
}
public long minIfEmpty(long defaultValue)
{
if (this.isEmpty())
{
return defaultValue;
}
return this.min();
}
public double average()
{
if (this.isEmpty())
{
throw new ArithmeticException();
}
return (double) this.sum() / (double) this.size();
}
public double median()
{
if (this.isEmpty())
{
throw new ArithmeticException();
}
long[] sortedArray = this.toSortedArray();
int middleIndex = sortedArray.length >> 1;
if (sortedArray.length > 1 && (sortedArray.length & 1) == 0)
{
long first = sortedArray[middleIndex];
long second = sortedArray[middleIndex - 1];
return ((double) first + (double) second) / 2.0;
}
return (double) sortedArray[middleIndex];
}
public long[] toSortedArray()
{
long[] array = this.toArray();
Arrays.sort(array);
return array;
}
public MutableLongList toSortedList()
{
return LongArrayList.newList(this).sortThis();
}
public void writeExternal(ObjectOutput out) throws IOException
{
out.writeInt(this.size());
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
out.writeDouble(EMPTY_KEY);
out.writeLong(this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey)
{
out.writeDouble(REMOVED_KEY);
out.writeLong(this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
out.writeDouble(this.keys[i]);
out.writeLong(this.values[i]);
}
}
}
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
{
int size = in.readInt();
for (int i = 0; i < size; i++)
{
this.put(in.readDouble(), in.readLong());
}
}
/**
* Rehashes every element in the set into a new backing table of the smallest possible size and eliminating removed sentinels.
*/
public void compact()
{
this.rehash(this.smallestPowerOfTwoGreaterThan(this.size()));
}
private void rehash()
{
this.rehash(this.keys.length);
}
private void rehashAndGrow()
{
this.rehash(this.keys.length << 1);
}
private void rehash(int newCapacity)
{
int oldLength = this.keys.length;
double[] old = this.keys;
long[] oldValues = this.values;
this.allocateTable(newCapacity);
this.occupiedWithData = 0;
this.occupiedWithSentinels = 0;
for (int i = 0; i < oldLength; i++)
{
if (isNonSentinel(old[i]))
{
this.put(old[i], oldValues[i]);
}
}
}
// exposed for testing
int probe(double element)
{
int index = this.spread(element);
double keyAtIndex = this.keys[index];
if (Double.compare(keyAtIndex, element) == 0 || Double.compare(keyAtIndex, EMPTY_KEY) == 0)
{
return index;
}
int removedIndex = Double.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 (Double.compare(this.keys[nextIndex], element) == 0)
{
return nextIndex;
}
if (Double.compare(this.keys[nextIndex], REMOVED_KEY) == 0)
{
if (removedIndex == -1)
{
removedIndex = nextIndex;
}
}
else if (Double.compare(this.keys[nextIndex], EMPTY_KEY) == 0)
{
return removedIndex == -1 ? nextIndex : removedIndex;
}
}
}
// exposed for testing
int spread(double element)
{
long code = Double.doubleToLongBits(element);
code = ~code + (code << 18);
code = (code << 18) - code - 1;
code ^= code >>> 31;
code *= 21;
code += (code << 2) + (code << 4);
code ^= code >>> 11;
code += code << 6;
code ^= code >>> 22;
return (int) code & (this.keys.length - 1);
}
private void allocateTable(int sizeToAllocate)
{
this.keys = new double[sizeToAllocate];
this.values = new long[sizeToAllocate];
}
private static boolean isEmptyKey(double key)
{
return Double.compare(key, EMPTY_KEY) == 0;
}
private static boolean isRemovedKey(double key)
{
return Double.compare(key, REMOVED_KEY) == 0;
}
private static boolean isNonSentinel(double key)
{
return !isEmptyKey(key) && !isRemovedKey(key);
}
private int maxOccupiedWithData()
{
int capacity = this.keys.length;
// need at least one free slot for open addressing
return Math.min(capacity - 1, capacity / OCCUPIED_DATA_RATIO);
}
private int maxOccupiedWithSentinels()
{
return this.keys.length / OCCUPIED_SENTINEL_RATIO;
}
private static final class SentinelValues
{
private boolean containsZeroKey;
private boolean containsOneKey;
private long zeroValue;
private long oneValue;
public int size()
{
return (this.containsZeroKey ? 1 : 0) + (this.containsOneKey ? 1 : 0);
}
public boolean containsValue(long value)
{
boolean valueEqualsZeroValue = this.containsZeroKey && this.zeroValue == value;
boolean valueEqualsOneValue = this.containsOneKey && this.oneValue == value;
return valueEqualsZeroValue || valueEqualsOneValue;
}
}
private class InternalLongIterator implements LongIterator
{
private int count;
private int position;
private boolean handledZero;
private boolean handledOne;
public boolean hasNext()
{
return this.count < DoubleLongHashMap.this.size();
}
public long next()
{
if (!this.hasNext())
{
throw new NoSuchElementException("next() called, but the iterator is exhausted");
}
this.count++;
if (!this.handledZero)
{
this.handledZero = true;
if (DoubleLongHashMap.this.containsKey(EMPTY_KEY))
{
return DoubleLongHashMap.this.get(EMPTY_KEY);
}
}
if (!this.handledOne)
{
this.handledOne = true;
if (DoubleLongHashMap.this.containsKey(REMOVED_KEY))
{
return DoubleLongHashMap.this.get(REMOVED_KEY);
}
}
double[] keys = DoubleLongHashMap.this.keys;
while (!isNonSentinel(keys[this.position]))
{
this.position++;
}
long result = DoubleLongHashMap.this.values[this.position];
this.position++;
return result;
}
}
private class KeysView extends AbstractLazyDoubleIterable
{
public DoubleIterator doubleIterator()
{
return new KeySetIterator();
}
public void forEach(DoubleProcedure procedure)
{
DoubleLongHashMap.this.forEachKey(procedure);
}
}
private class KeySetIterator implements DoubleIterator
{
private int count;
private int position;
private boolean handledZero;
private boolean handledOne;
public boolean hasNext()
{
return this.count < DoubleLongHashMap.this.size();
}
public double next()
{
if (!this.hasNext())
{
throw new NoSuchElementException("next() called, but the iterator is exhausted");
}
this.count++;
if (!this.handledZero)
{
this.handledZero = true;
if (DoubleLongHashMap.this.containsKey(EMPTY_KEY))
{
return EMPTY_KEY;
}
}
if (!this.handledOne)
{
this.handledOne = true;
if (DoubleLongHashMap.this.containsKey(REMOVED_KEY))
{
return REMOVED_KEY;
}
}
double[] keys = DoubleLongHashMap.this.keys;
while (!isNonSentinel(keys[this.position]))
{
this.position++;
}
double result = keys[this.position];
this.position++;
return result;
}
}
public MutableDoubleSet keySet()
{
return new KeySet();
}
private class KeySet implements MutableDoubleSet
{
public DoubleIterator doubleIterator()
{
return new KeySetIterator();
}
public void forEach(DoubleProcedure procedure)
{
DoubleLongHashMap.this.forEachKey(procedure);
}
public int count(DoublePredicate predicate)
{
int count = 0;
if (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
count++;
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
count++;
}
}
for (double key : DoubleLongHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
count++;
}
}
return count;
}
public boolean anySatisfy(DoublePredicate predicate)
{
if (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
return true;
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
return true;
}
}
for (double key : DoubleLongHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
return true;
}
}
return false;
}
public boolean allSatisfy(DoublePredicate predicate)
{
if (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey && !predicate.accept(EMPTY_KEY))
{
return false;
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey && !predicate.accept(REMOVED_KEY))
{
return false;
}
}
for (double key : DoubleLongHashMap.this.keys)
{
if (isNonSentinel(key) && !predicate.accept(key))
{
return false;
}
}
return true;
}
public boolean noneSatisfy(DoublePredicate predicate)
{
if (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
return false;
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
return false;
}
}
for (double key : DoubleLongHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
return false;
}
}
return true;
}
public boolean add(double element)
{
throw new UnsupportedOperationException("Cannot call add() on " + this.getClass().getSimpleName());
}
public boolean addAll(double... source)
{
throw new UnsupportedOperationException("Cannot call addAll() on " + this.getClass().getSimpleName());
}
public boolean addAll(DoubleIterable source)
{
throw new UnsupportedOperationException("Cannot call addAll() on " + this.getClass().getSimpleName());
}
public boolean remove(double key)
{
int oldSize = DoubleLongHashMap.this.size();
DoubleLongHashMap.this.removeKey(key);
return oldSize != DoubleLongHashMap.this.size();
}
public boolean removeAll(DoubleIterable source)
{
int oldSize = DoubleLongHashMap.this.size();
DoubleIterator iterator = source.doubleIterator();
while (iterator.hasNext())
{
DoubleLongHashMap.this.removeKey(iterator.next());
}
return oldSize != DoubleLongHashMap.this.size();
}
public boolean removeAll(double... source)
{
int oldSize = DoubleLongHashMap.this.size();
for (double item : source)
{
DoubleLongHashMap.this.removeKey(item);
}
return oldSize != DoubleLongHashMap.this.size();
}
public boolean retainAll(DoubleIterable source)
{
int oldSize = this.size();
final DoubleSet sourceSet = source instanceof DoubleSet ? (DoubleSet) source : source.toSet();
DoubleLongHashMap retained = DoubleLongHashMap.this.select(new DoubleLongPredicate()
{
public boolean accept(double key, long value)
{
return sourceSet.contains(key);
}
});
if (retained.size() != oldSize)
{
DoubleLongHashMap.this.keys = retained.keys;
DoubleLongHashMap.this.values = retained.values;
DoubleLongHashMap.this.sentinelValues = retained.sentinelValues;
DoubleLongHashMap.this.occupiedWithData = retained.occupiedWithData;
DoubleLongHashMap.this.occupiedWithSentinels = retained.occupiedWithSentinels;
return true;
}
return false;
}
public boolean retainAll(double... source)
{
return this.retainAll(DoubleHashSet.newSetWith(source));
}
public void clear()
{
DoubleLongHashMap.this.clear();
}
public MutableDoubleSet select(DoublePredicate predicate)
{
MutableDoubleSet result = new DoubleHashSet();
if (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
result.add(EMPTY_KEY);
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
result.add(REMOVED_KEY);
}
}
for (double key : DoubleLongHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
result.add(key);
}
}
return result;
}
public MutableDoubleSet reject(DoublePredicate predicate)
{
MutableDoubleSet result = new DoubleHashSet();
if (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey && !predicate.accept(EMPTY_KEY))
{
result.add(EMPTY_KEY);
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey && !predicate.accept(REMOVED_KEY))
{
result.add(REMOVED_KEY);
}
}
for (double key : DoubleLongHashMap.this.keys)
{
if (isNonSentinel(key) && !predicate.accept(key))
{
result.add(key);
}
}
return result;
}
public MutableDoubleSet with(double element)
{
throw new UnsupportedOperationException("Cannot call with() on " + this.getClass().getSimpleName());
}
public MutableDoubleSet without(double element)
{
throw new UnsupportedOperationException("Cannot call without() on " + this.getClass().getSimpleName());
}
public MutableDoubleSet withAll(DoubleIterable elements)
{
throw new UnsupportedOperationException("Cannot call withAll() on " + this.getClass().getSimpleName());
}
public MutableDoubleSet withoutAll(DoubleIterable elements)
{
throw new UnsupportedOperationException("Cannot call withoutAll() on " + this.getClass().getSimpleName());
}
public double detectIfNone(DoublePredicate predicate, double ifNone)
{
if (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
return EMPTY_KEY;
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
return REMOVED_KEY;
}
}
for (double key : DoubleLongHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
return key;
}
}
return ifNone;
}
public MutableSet collect(DoubleToObjectFunction extends V> function)
{
MutableSet result = Sets.mutable.with();
if (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey)
{
result.add(function.valueOf(EMPTY_KEY));
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey)
{
result.add(function.valueOf(REMOVED_KEY));
}
}
for (double key : DoubleLongHashMap.this.keys)
{
if (isNonSentinel(key))
{
result.add(function.valueOf(key));
}
}
return result;
}
public MutableDoubleSet asUnmodifiable()
{
return UnmodifiableDoubleSet.of(this);
}
public MutableDoubleSet asSynchronized()
{
return SynchronizedDoubleSet.of(this);
}
public double sum()
{
double sum = 0.0;
if (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey)
{
sum += EMPTY_KEY;
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey)
{
sum += REMOVED_KEY;
}
}
for (double key : DoubleLongHashMap.this.keys)
{
if (isNonSentinel(key))
{
sum += key;
}
}
return sum;
}
public double max()
{
if (DoubleLongHashMap.this.isEmpty())
{
throw new NoSuchElementException();
}
double max = 0;
boolean isMaxSet = false;
if (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey)
{
max = EMPTY_KEY;
isMaxSet = true;
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey && (!isMaxSet || Double.compare(max, REMOVED_KEY) < 0))
{
max = REMOVED_KEY;
isMaxSet = true;
}
}
for (int i = 0; i < DoubleLongHashMap.this.keys.length; i++)
{
if (isNonSentinel(DoubleLongHashMap.this.keys[i]) && (!isMaxSet || Double.compare(max, DoubleLongHashMap.this.keys[i]) < 0))
{
max = DoubleLongHashMap.this.keys[i];
isMaxSet = true;
}
}
return max;
}
public double maxIfEmpty(double defaultValue)
{
if (DoubleLongHashMap.this.isEmpty())
{
return defaultValue;
}
return this.max();
}
public double min()
{
if (DoubleLongHashMap.this.isEmpty())
{
throw new NoSuchElementException();
}
double min = 0;
boolean isMinSet = false;
if (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey)
{
min = EMPTY_KEY;
isMinSet = true;
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey && (!isMinSet || Double.compare(REMOVED_KEY, min) < 0))
{
min = REMOVED_KEY;
isMinSet = true;
}
}
for (int i = 0; i < DoubleLongHashMap.this.keys.length; i++)
{
if (isNonSentinel(DoubleLongHashMap.this.keys[i]) && (!isMinSet || Double.compare(DoubleLongHashMap.this.keys[i], min) < 0))
{
min = DoubleLongHashMap.this.keys[i];
isMinSet = true;
}
}
return min;
}
public double minIfEmpty(double defaultValue)
{
if (DoubleLongHashMap.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();
}
double[] sortedArray = this.toSortedArray();
int middleIndex = sortedArray.length >> 1;
if (sortedArray.length > 1 && (sortedArray.length & 1) == 0)
{
double first = sortedArray[middleIndex];
double second = sortedArray[middleIndex - 1];
return (first + second) / 2.0;
}
return sortedArray[middleIndex];
}
public double[] toSortedArray()
{
double[] array = this.toArray();
Arrays.sort(array);
return array;
}
public MutableDoubleList toSortedList()
{
return DoubleArrayList.newList(this).sortThis();
}
public double[] toArray()
{
int size = DoubleLongHashMap.this.size();
final double[] result = new double[size];
DoubleLongHashMap.this.forEachKey(new DoubleProcedure()
{
private int index;
public void value(double each)
{
result[this.index] = each;
this.index++;
}
});
return result;
}
public boolean contains(double value)
{
return DoubleLongHashMap.this.containsKey(value);
}
public boolean containsAll(double... source)
{
for (double item : source)
{
if (!DoubleLongHashMap.this.containsKey(item))
{
return false;
}
}
return true;
}
public boolean containsAll(DoubleIterable source)
{
DoubleIterator iterator = source.doubleIterator();
while (iterator.hasNext())
{
if (!DoubleLongHashMap.this.containsKey(iterator.next()))
{
return false;
}
}
return true;
}
public MutableDoubleList toList()
{
return DoubleArrayList.newList(this);
}
public MutableDoubleSet toSet()
{
return DoubleHashSet.newSet(this);
}
public MutableDoubleBag toBag()
{
return DoubleHashBag.newBag(this);
}
public LazyDoubleIterable asLazy()
{
return new LazyDoubleIterableAdapter(this);
}
public T injectInto(T injectedValue, ObjectDoubleToObjectFunction super T, ? extends T> function)
{
T result = injectedValue;
if (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey)
{
result = function.valueOf(result, EMPTY_KEY);
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey)
{
result = function.valueOf(result, REMOVED_KEY);
}
}
for (int i = 0; i < DoubleLongHashMap.this.keys.length; i++)
{
if (isNonSentinel(DoubleLongHashMap.this.keys[i]))
{
result = function.valueOf(result, DoubleLongHashMap.this.keys[i]);
}
}
return result;
}
public DoubleSet freeze()
{
throw new UnsupportedOperationException(this.getClass().getSimpleName() + ".freeze() not implemented yet");
}
public ImmutableDoubleSet toImmutable()
{
return DoubleSets.immutable.withAll(this);
}
public int size()
{
return DoubleLongHashMap.this.size();
}
public boolean isEmpty()
{
return DoubleLongHashMap.this.isEmpty();
}
public boolean notEmpty()
{
return DoubleLongHashMap.this.notEmpty();
}
@Override
public boolean equals(Object obj)
{
if (this == obj)
{
return true;
}
if (!(obj instanceof DoubleSet))
{
return false;
}
DoubleSet other = (DoubleSet) obj;
return this.size() == other.size() && this.containsAll(other.toArray());
}
@Override
public int hashCode()
{
int result = 0;
if (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey)
{
result += (int) (Double.doubleToLongBits(EMPTY_KEY) ^ Double.doubleToLongBits(EMPTY_KEY) >>> 32);
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey)
{
result += (int) (Double.doubleToLongBits(REMOVED_KEY) ^ Double.doubleToLongBits(REMOVED_KEY) >>> 32);
}
}
for (int i = 0; i < DoubleLongHashMap.this.keys.length; i++)
{
if (isNonSentinel(DoubleLongHashMap.this.keys[i]))
{
result += (int) (Double.doubleToLongBits(DoubleLongHashMap.this.keys[i]) ^ Double.doubleToLongBits(DoubleLongHashMap.this.keys[i]) >>> 32);
}
}
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 (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey)
{
appendable.append(String.valueOf(EMPTY_KEY));
first = false;
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey)
{
if (!first)
{
appendable.append(separator);
}
appendable.append(String.valueOf(REMOVED_KEY));
first = false;
}
}
for (double key : DoubleLongHashMap.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 MutableLongCollection values()
{
return new ValuesCollection();
}
private class ValuesCollection implements MutableLongCollection
{
public void clear()
{
DoubleLongHashMap.this.clear();
}
public MutableLongCollection select(LongPredicate predicate)
{
return DoubleLongHashMap.this.select(predicate);
}
public MutableLongCollection reject(LongPredicate predicate)
{
return DoubleLongHashMap.this.reject(predicate);
}
public long detectIfNone(LongPredicate predicate, long ifNone)
{
return DoubleLongHashMap.this.detectIfNone(predicate, ifNone);
}
public MutableCollection collect(LongToObjectFunction extends V> function)
{
return DoubleLongHashMap.this.collect(function);
}
public T injectInto(T injectedValue, ObjectLongToObjectFunction super T, ? extends T> function)
{
return DoubleLongHashMap.this.injectInto(injectedValue, function);
}
public long sum()
{
return DoubleLongHashMap.this.sum();
}
public long max()
{
return DoubleLongHashMap.this.max();
}
public long maxIfEmpty(long defaultValue)
{
return DoubleLongHashMap.this.maxIfEmpty(defaultValue);
}
public long min()
{
return DoubleLongHashMap.this.min();
}
public long minIfEmpty(long defaultValue)
{
return DoubleLongHashMap.this.minIfEmpty(defaultValue);
}
public double average()
{
return DoubleLongHashMap.this.average();
}
public double median()
{
return DoubleLongHashMap.this.median();
}
public long[] toSortedArray()
{
return DoubleLongHashMap.this.toSortedArray();
}
public MutableLongList toSortedList()
{
return DoubleLongHashMap.this.toSortedList();
}
public MutableLongCollection with(long element)
{
throw new UnsupportedOperationException("Cannot call with() on " + this.getClass().getSimpleName());
}
public MutableLongCollection without(long element)
{
throw new UnsupportedOperationException("Cannot call without() on " + this.getClass().getSimpleName());
}
public MutableLongCollection withAll(LongIterable elements)
{
throw new UnsupportedOperationException("Cannot call withAll() on " + this.getClass().getSimpleName());
}
public MutableLongCollection withoutAll(LongIterable elements)
{
throw new UnsupportedOperationException("Cannot call withoutAll() on " + this.getClass().getSimpleName());
}
public MutableLongCollection asUnmodifiable()
{
return UnmodifiableLongCollection.of(this);
}
public MutableLongCollection asSynchronized()
{
return SynchronizedLongCollection.of(this);
}
public ImmutableLongCollection toImmutable()
{
return LongLists.immutable.withAll(this);
}
public boolean contains(long value)
{
return DoubleLongHashMap.this.containsValue(value);
}
public boolean containsAll(long... source)
{
return DoubleLongHashMap.this.containsAll(source);
}
public boolean containsAll(LongIterable source)
{
return DoubleLongHashMap.this.containsAll(source);
}
public MutableLongList toList()
{
return DoubleLongHashMap.this.toList();
}
public MutableLongSet toSet()
{
return DoubleLongHashMap.this.toSet();
}
public MutableLongBag toBag()
{
return DoubleLongHashMap.this.toBag();
}
public LazyLongIterable asLazy()
{
return new LazyLongIterableAdapter(this);
}
public boolean isEmpty()
{
return DoubleLongHashMap.this.isEmpty();
}
public boolean notEmpty()
{
return DoubleLongHashMap.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 (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey)
{
appendable.append(String.valueOf(DoubleLongHashMap.this.sentinelValues.zeroValue));
first = false;
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey)
{
if (!first)
{
appendable.append(separator);
}
appendable.append(String.valueOf(DoubleLongHashMap.this.sentinelValues.oneValue));
first = false;
}
}
for (int i = 0; i < DoubleLongHashMap.this.keys.length; i++)
{
double key = DoubleLongHashMap.this.keys[i];
if (isNonSentinel(key))
{
if (!first)
{
appendable.append(separator);
}
appendable.append(String.valueOf(DoubleLongHashMap.this.values[i]));
first = false;
}
}
appendable.append(end);
}
catch (IOException e)
{
throw new RuntimeException(e);
}
}
public LongIterator longIterator()
{
return DoubleLongHashMap.this.longIterator();
}
public void forEach(LongProcedure procedure)
{
DoubleLongHashMap.this.forEach(procedure);
}
public int count(LongPredicate predicate)
{
return DoubleLongHashMap.this.count(predicate);
}
public boolean anySatisfy(LongPredicate predicate)
{
return DoubleLongHashMap.this.anySatisfy(predicate);
}
public boolean allSatisfy(LongPredicate predicate)
{
return DoubleLongHashMap.this.allSatisfy(predicate);
}
public boolean noneSatisfy(LongPredicate predicate)
{
return DoubleLongHashMap.this.noneSatisfy(predicate);
}
public boolean add(long element)
{
throw new UnsupportedOperationException("Cannot call add() on " + this.getClass().getSimpleName());
}
public boolean addAll(long... source)
{
throw new UnsupportedOperationException("Cannot call addAll() on " + this.getClass().getSimpleName());
}
public boolean addAll(LongIterable source)
{
throw new UnsupportedOperationException("Cannot call addAll() on " + this.getClass().getSimpleName());
}
public boolean remove(long item)
{
int oldSize = DoubleLongHashMap.this.size();
if (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey && item == DoubleLongHashMap.this.sentinelValues.zeroValue)
{
DoubleLongHashMap.this.removeKey(EMPTY_KEY);
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey && item == DoubleLongHashMap.this.sentinelValues.oneValue)
{
DoubleLongHashMap.this.removeKey(REMOVED_KEY);
}
}
for (int i = 0; i < DoubleLongHashMap.this.keys.length; i++)
{
if (isNonSentinel(DoubleLongHashMap.this.keys[i]) && item == DoubleLongHashMap.this.values[i])
{
DoubleLongHashMap.this.removeKey(DoubleLongHashMap.this.keys[i]);
}
}
return oldSize != DoubleLongHashMap.this.size();
}
public boolean removeAll(LongIterable source)
{
int oldSize = DoubleLongHashMap.this.size();
LongIterator iterator = source.longIterator();
while (iterator.hasNext())
{
this.remove(iterator.next());
}
return oldSize != DoubleLongHashMap.this.size();
}
public boolean removeAll(long... source)
{
int oldSize = DoubleLongHashMap.this.size();
for (long item : source)
{
this.remove(item);
}
return oldSize != DoubleLongHashMap.this.size();
}
public boolean retainAll(LongIterable source)
{
int oldSize = this.size();
final LongSet sourceSet = source instanceof LongSet ? (LongSet) source : source.toSet();
DoubleLongHashMap retained = DoubleLongHashMap.this.select(new DoubleLongPredicate()
{
public boolean accept(double key, long value)
{
return sourceSet.contains(value);
}
});
if (retained.size() != oldSize)
{
DoubleLongHashMap.this.keys = retained.keys;
DoubleLongHashMap.this.values = retained.values;
DoubleLongHashMap.this.sentinelValues = retained.sentinelValues;
DoubleLongHashMap.this.occupiedWithData = retained.occupiedWithData;
DoubleLongHashMap.this.occupiedWithSentinels = retained.occupiedWithSentinels;
return true;
}
return false;
}
public boolean retainAll(long... source)
{
return this.retainAll(LongHashSet.newSetWith(source));
}
public int size()
{
return DoubleLongHashMap.this.size();
}
public long[] toArray()
{
return DoubleLongHashMap.this.toArray();
}
}
private class KeyValuesView extends AbstractLazyIterable
{
public void forEach(Procedure super DoubleLongPair> procedure)
{
if (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey)
{
procedure.value(PrimitiveTuples.pair(EMPTY_KEY, DoubleLongHashMap.this.sentinelValues.zeroValue));
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey)
{
procedure.value(PrimitiveTuples.pair(REMOVED_KEY, DoubleLongHashMap.this.sentinelValues.oneValue));
}
}
for (int i = 0; i < DoubleLongHashMap.this.keys.length; i++)
{
if (isNonSentinel(DoubleLongHashMap.this.keys[i]))
{
procedure.value(PrimitiveTuples.pair(DoubleLongHashMap.this.keys[i], DoubleLongHashMap.this.values[i]));
}
}
}
public void forEachWithIndex(ObjectIntProcedure super DoubleLongPair> objectIntProcedure)
{
int index = 0;
if (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey)
{
objectIntProcedure.value(PrimitiveTuples.pair(EMPTY_KEY, DoubleLongHashMap.this.sentinelValues.zeroValue), index);
index++;
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey)
{
objectIntProcedure.value(PrimitiveTuples.pair(REMOVED_KEY, DoubleLongHashMap.this.sentinelValues.oneValue), index);
index++;
}
}
for (int i = 0; i < DoubleLongHashMap.this.keys.length; i++)
{
if (isNonSentinel(DoubleLongHashMap.this.keys[i]))
{
objectIntProcedure.value(PrimitiveTuples.pair(DoubleLongHashMap.this.keys[i], DoubleLongHashMap.this.values[i]), index);
index++;
}
}
}
public void forEachWith(Procedure2 super DoubleLongPair, ? super P> procedure, P parameter)
{
if (DoubleLongHashMap.this.sentinelValues != null)
{
if (DoubleLongHashMap.this.sentinelValues.containsZeroKey)
{
procedure.value(PrimitiveTuples.pair(EMPTY_KEY, DoubleLongHashMap.this.sentinelValues.zeroValue), parameter);
}
if (DoubleLongHashMap.this.sentinelValues.containsOneKey)
{
procedure.value(PrimitiveTuples.pair(REMOVED_KEY, DoubleLongHashMap.this.sentinelValues.oneValue), parameter);
}
}
for (int i = 0; i < DoubleLongHashMap.this.keys.length; i++)
{
if (isNonSentinel(DoubleLongHashMap.this.keys[i]))
{
procedure.value(PrimitiveTuples.pair(DoubleLongHashMap.this.keys[i], DoubleLongHashMap.this.values[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 DoubleLongPair next()
{
if (!this.hasNext())
{
throw new NoSuchElementException("next() called, but the iterator is exhausted");
}
this.count++;
if (!this.handledZero)
{
this.handledZero = true;
if (DoubleLongHashMap.this.containsKey(EMPTY_KEY))
{
return PrimitiveTuples.pair(EMPTY_KEY, DoubleLongHashMap.this.sentinelValues.zeroValue);
}
}
if (!this.handledOne)
{
this.handledOne = true;
if (DoubleLongHashMap.this.containsKey(REMOVED_KEY))
{
return PrimitiveTuples.pair(REMOVED_KEY, DoubleLongHashMap.this.sentinelValues.oneValue);
}
}
double[] keys = DoubleLongHashMap.this.keys;
while (!isNonSentinel(keys[this.position]))
{
this.position++;
}
DoubleLongPair result = PrimitiveTuples.pair(keys[this.position], DoubleLongHashMap.this.values[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 != DoubleLongHashMap.this.size();
}
}
}
}