All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gs.collections.impl.map.mutable.primitive.FloatByteHashMap Maven / Gradle / Ivy

Go to download

GS Collections is a collections framework for Java. It has JDK-compatible List, Set and Map implementations with a rich API and set of utility classes that work with any JDK compatible Collections, Arrays, Maps or Strings. The iteration protocol was inspired by the Smalltalk collection framework.

There is a newer version: 7.0.3
Show newest version
/*
 * 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.FloatIterable;
import com.gs.collections.api.LazyFloatIterable;
import com.gs.collections.api.LazyByteIterable;
import com.gs.collections.api.ByteIterable;
import com.gs.collections.api.LazyIterable;
import com.gs.collections.api.RichIterable;
import com.gs.collections.api.bag.primitive.MutableFloatBag;
import com.gs.collections.api.bag.primitive.MutableByteBag;
import com.gs.collections.api.block.function.primitive.FloatToObjectFunction;
import com.gs.collections.api.block.function.primitive.FloatToByteFunction;
import com.gs.collections.api.block.function.primitive.ByteFunction;
import com.gs.collections.api.block.function.primitive.ByteFunction0;
import com.gs.collections.api.block.function.primitive.ByteToByteFunction;
import com.gs.collections.api.block.function.primitive.ByteToObjectFunction;
import com.gs.collections.api.block.function.primitive.ObjectByteToObjectFunction;
import com.gs.collections.api.block.function.primitive.ObjectFloatToObjectFunction;
import com.gs.collections.api.block.predicate.primitive.FloatBytePredicate;
import com.gs.collections.api.block.predicate.primitive.FloatPredicate;
import com.gs.collections.api.block.predicate.primitive.BytePredicate;
import com.gs.collections.api.block.procedure.Procedure;
import com.gs.collections.api.block.procedure.Procedure2;
import com.gs.collections.api.block.procedure.primitive.FloatProcedure;
import com.gs.collections.api.block.procedure.primitive.FloatByteProcedure;
import com.gs.collections.api.block.procedure.primitive.ByteProcedure;
import com.gs.collections.api.block.procedure.primitive.ObjectIntProcedure;
import com.gs.collections.api.collection.MutableCollection;
import com.gs.collections.api.collection.primitive.ImmutableByteCollection;
import com.gs.collections.api.collection.primitive.MutableByteCollection;
import com.gs.collections.api.iterator.FloatIterator;
import com.gs.collections.api.iterator.ByteIterator;
import com.gs.collections.api.list.primitive.MutableFloatList;
import com.gs.collections.api.list.primitive.MutableByteList;
import com.gs.collections.api.map.primitive.FloatByteMap;
import com.gs.collections.api.map.primitive.ImmutableFloatByteMap;
import com.gs.collections.api.map.primitive.MutableFloatByteMap;
import com.gs.collections.api.set.MutableSet;
import com.gs.collections.api.set.primitive.FloatSet;
import com.gs.collections.api.set.primitive.ByteSet;
import com.gs.collections.api.set.primitive.ImmutableFloatSet;
import com.gs.collections.api.set.primitive.MutableFloatSet;
import com.gs.collections.api.tuple.primitive.FloatBytePair;
import com.gs.collections.api.set.primitive.MutableByteSet;
import com.gs.collections.impl.bag.mutable.primitive.FloatHashBag;
import com.gs.collections.impl.bag.mutable.primitive.ByteHashBag;
import com.gs.collections.impl.block.factory.primitive.FloatPredicates;
import com.gs.collections.impl.collection.mutable.primitive.SynchronizedByteCollection;
import com.gs.collections.impl.collection.mutable.primitive.UnmodifiableByteCollection;
import com.gs.collections.impl.factory.Sets;
import com.gs.collections.impl.factory.primitive.ByteLists;
import com.gs.collections.impl.factory.primitive.FloatByteMaps;
import com.gs.collections.impl.factory.primitive.FloatSets;
import com.gs.collections.impl.lazy.AbstractLazyIterable;
import com.gs.collections.impl.lazy.primitive.AbstractLazyFloatIterable;
import com.gs.collections.impl.lazy.primitive.LazyByteIterableAdapter;
import com.gs.collections.impl.lazy.primitive.LazyFloatIterableAdapter;
import com.gs.collections.impl.list.mutable.FastList;
import com.gs.collections.impl.list.mutable.primitive.FloatArrayList;
import com.gs.collections.impl.list.mutable.primitive.ByteArrayList;
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.set.mutable.primitive.ByteHashSet;
import com.gs.collections.impl.tuple.primitive.PrimitiveTuples;

/**
 * This file was automatically generated from template file primitivePrimitiveHashMap.stg.
 *
 * @since 3.0.
 */
public class FloatByteHashMap implements MutableFloatByteMap, Externalizable
{
    static final byte EMPTY_VALUE = (byte) 0;
    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 int OCCUPIED_DATA_RATIO = 2;
    private static final int OCCUPIED_SENTINEL_RATIO = 4;
    private static final int DEFAULT_INITIAL_CAPACITY = 8;

    private float[] keys;
    private byte[] values;

    private int occupiedWithData;
    private int occupiedWithSentinels;

    private SentinelValues sentinelValues;

    public FloatByteHashMap()
    {
        this.allocateTable(DEFAULT_INITIAL_CAPACITY << 1);
    }

    public FloatByteHashMap(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 FloatByteHashMap(FloatByteMap 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 FloatByteHashMap newWithKeysValues(float key1, byte value1)
    {
        return new FloatByteHashMap(1).withKeyValue(key1, value1);
    }

    public static FloatByteHashMap newWithKeysValues(float key1, byte value1, float key2, byte value2)
    {
        return new FloatByteHashMap(2).withKeysValues(key1, value1, key2, value2);
    }

    public static FloatByteHashMap newWithKeysValues(float key1, byte value1, float key2, byte value2, float key3, byte value3)
    {
        return new FloatByteHashMap(3).withKeysValues(key1, value1, key2, value2, key3, value3);
    }

    public static FloatByteHashMap newWithKeysValues(float key1, byte value1, float key2, byte value2, float key3, byte value3, float key4, byte value4)
    {
        return new FloatByteHashMap(4).withKeysValues(key1, value1, key2, value2, key3, value3, key4, value4);
    }

    @Override
    public boolean equals(Object obj)
    {
        if (this == obj)
        {
            return true;
        }

        if (!(obj instanceof FloatByteMap))
        {
            return false;
        }

        FloatByteMap other = (FloatByteMap) 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[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) ^ (int) this.sentinelValues.zeroValue;
            }
            if (this.sentinelValues.containsOneKey)
            {
                result += Float.floatToIntBits(REMOVED_KEY) ^ (int) this.sentinelValues.oneValue;
            }
        }
        for (int i = 0; i < this.keys.length; i++)
        {
            if (isNonSentinel(this.keys[i]))
            {
                result += Float.floatToIntBits(this.keys[i]) ^ (int) this.values[i];
            }
        }

        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[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++)
            {
                float 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 ByteIterator byteIterator()
    {
        return new InternalByteIterator();
    }

    public byte[] toArray()
    {
        byte[] array = new byte[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(byte value)
    {
        return this.containsValue(value);
    }

    public boolean containsAll(byte... source)
    {
        for (byte each : source)
        {
            if (!this.contains(each))
            {
                return false;
            }
        }
        return true;
    }

    public boolean containsAll(ByteIterable source)
    {
        return source.allSatisfy(new BytePredicate()
        {
            public boolean accept(byte value)
            {
                return FloatByteHashMap.this.contains(value);
            }
        });
    }

    public void forEach(ByteProcedure procedure)
    {
        this.forEachValue(procedure);
    }

    public MutableByteCollection select(BytePredicate predicate)
    {
        ByteArrayList result = new ByteArrayList();

        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 MutableByteCollection reject(BytePredicate predicate)
    {
        ByteArrayList result = new ByteArrayList();
        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(ByteToObjectFunction 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 byte detectIfNone(BytePredicate predicate, byte 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(BytePredicate 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(BytePredicate 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(BytePredicate 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(BytePredicate 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, ObjectByteToObjectFunction 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 MutableByteList toList()
    {
        return ByteArrayList.newList(this);
    }

    public MutableByteSet toSet()
    {
        return ByteHashSet.newSet(this);
    }

    public MutableByteBag toBag()
    {
        return ByteHashBag.newBag(this);
    }

    public LazyByteIterable asLazy()
    {
        return new LazyByteIterableAdapter(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(float key, byte 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 (Float.compare(this.keys[index], key) == 0)
        {
            // key already present in map
            this.values[index] = value;
            return;
        }

        this.addKeyValueAtIndex(key, value, index);
    }

    public void putAll(FloatByteMap map)
    {
        map.forEachKeyValue(new FloatByteProcedure()
        {
            public void value(float key, byte value)
            {
                FloatByteHashMap.this.put(key, value);
            }
        });
    }

    public void removeKey(float 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 (Float.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(float key)
    {
        this.removeKey(key);
    }

    public byte removeKeyIfAbsent(float key, byte value)
    {
        if (isEmptyKey(key))
        {
            if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey)
            {
                return value;
            }
            byte oldValue = this.sentinelValues.zeroValue;
            this.removeEmptyKey();
            return oldValue;
        }
        if (isRemovedKey(key))
        {
            if (this.sentinelValues == null || !this.sentinelValues.containsOneKey)
            {
                return value;
            }
            byte oldValue = this.sentinelValues.oneValue;
            this.removeRemovedKey();
            return oldValue;
        }
        int index = this.probe(key);
        if (Float.compare(this.keys[index], key) == 0)
        {
            this.keys[index] = REMOVED_KEY;
            byte 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 byte getIfAbsentPut(float key, byte 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 (Float.compare(this.keys[index], key) == 0)
        {
            return this.values[index];
        }
        this.addKeyValueAtIndex(key, value, index);
        return value;
    }

    public byte getIfAbsentPut(float key, ByteFunction0 function)
    {
        if (isEmptyKey(key))
        {
            if (this.sentinelValues == null)
            {
                byte value = function.value();
                this.sentinelValues = new SentinelValues();
                this.addEmptyKeyValue(value);
                return value;
            }
            if (this.sentinelValues.containsZeroKey)
            {
                return this.sentinelValues.zeroValue;
            }
            byte value = function.value();
            this.addEmptyKeyValue(value);
            return value;
        }
        if (isRemovedKey(key))
        {
            if (this.sentinelValues == null)
            {
                byte value = function.value();
                this.sentinelValues = new SentinelValues();
                this.addRemovedKeyValue(value);
                return value;
            }
            if (this.sentinelValues.containsOneKey)
            {
                return this.sentinelValues.oneValue;
            }
            byte value = function.value();
            this.addRemovedKeyValue(value);
            return value;
        }
        int index = this.probe(key);
        if (Float.compare(this.keys[index], key) == 0)
        {
            return this.values[index];
        }
        byte value = function.value();
        this.addKeyValueAtIndex(key, value, index);
        return value;
    }

    public 

byte getIfAbsentPutWith(float key, ByteFunction function, P parameter) { if (isEmptyKey(key)) { if (this.sentinelValues == null) { byte value = function.byteValueOf(parameter); this.sentinelValues = new SentinelValues(); this.addEmptyKeyValue(value); return value; } if (this.sentinelValues.containsZeroKey) { return this.sentinelValues.zeroValue; } byte value = function.byteValueOf(parameter); this.addEmptyKeyValue(value); return value; } if (isRemovedKey(key)) { if (this.sentinelValues == null) { byte value = function.byteValueOf(parameter); this.sentinelValues = new SentinelValues(); this.addRemovedKeyValue(value); return value; } if (this.sentinelValues.containsOneKey) { return this.sentinelValues.oneValue; } byte value = function.byteValueOf(parameter); this.addRemovedKeyValue(value); return value; } int index = this.probe(key); if (Float.compare(this.keys[index], key) == 0) { return this.values[index]; } byte value = function.byteValueOf(parameter); this.addKeyValueAtIndex(key, value, index); return value; } public byte getIfAbsentPutWithKey(float key, FloatToByteFunction function) { if (isEmptyKey(key)) { if (this.sentinelValues == null) { byte value = function.valueOf(key); this.sentinelValues = new SentinelValues(); this.addEmptyKeyValue(value); return value; } if (this.sentinelValues.containsZeroKey) { return this.sentinelValues.zeroValue; } byte value = function.valueOf(key); this.addEmptyKeyValue(value); return value; } if (isRemovedKey(key)) { if (this.sentinelValues == null) { byte value = function.valueOf(key); this.sentinelValues = new SentinelValues(); this.addRemovedKeyValue(value); return value; } if (this.sentinelValues.containsOneKey) { return this.sentinelValues.oneValue; } byte value = function.valueOf(key); this.addRemovedKeyValue(value); return value; } int index = this.probe(key); if (Float.compare(this.keys[index], key) == 0) { return this.values[index]; } byte value = function.valueOf(key); this.addKeyValueAtIndex(key, value, index); return value; } public byte addToValue(float key, byte 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 (Float.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(float key, byte value, int index) { if (Float.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(byte 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(byte 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 byte updateValue(float key, byte initialValueIfAbsent, ByteToByteFunction 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 (Float.compare(this.keys[index], key) == 0) { this.values[index] = function.valueOf(this.values[index]); return this.values[index]; } byte value = function.valueOf(initialValueIfAbsent); this.addKeyValueAtIndex(key, value, index); return value; } public FloatByteHashMap withKeyValue(float key1, byte value1) { this.put(key1, value1); return this; } public FloatByteHashMap withKeysValues(float key1, byte value1, float key2, byte value2) { this.put(key1, value1); this.put(key2, value2); return this; } public FloatByteHashMap withKeysValues(float key1, byte value1, float key2, byte value2, float key3, byte value3) { this.put(key1, value1); this.put(key2, value2); this.put(key3, value3); return this; } public FloatByteHashMap withKeysValues(float key1, byte value1, float key2, byte value2, float key3, byte value3, float key4, byte value4) { this.put(key1, value1); this.put(key2, value2); this.put(key3, value3); this.put(key4, value4); return this; } public FloatByteHashMap withoutKey(float key) { this.removeKey(key); return this; } public FloatByteHashMap withoutAllKeys(FloatIterable keys) { keys.forEach(new FloatProcedure() { public void value(float key) { FloatByteHashMap.this.removeKey(key); } }); return this; } public MutableFloatByteMap asUnmodifiable() { return new UnmodifiableFloatByteMap(this); } public MutableFloatByteMap asSynchronized() { return new SynchronizedFloatByteMap(this); } public ImmutableFloatByteMap toImmutable() { return FloatByteMaps.immutable.ofAll(this); } public byte get(float key) { return this.getIfAbsent(key, EMPTY_VALUE); } public byte getIfAbsent(float key, byte 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 (Float.compare(this.keys[index], key) == 0) { return this.values[index]; } return ifAbsent; } public byte 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[index]; } throw new IllegalStateException("Key " + key + " not present."); } 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(byte 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(ByteProcedure 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(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(FloatByteProcedure 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 LazyFloatIterable keysView() { return new KeysView(); } public RichIterable keyValuesView() { return new KeyValuesView(); } public FloatByteHashMap select(FloatBytePredicate predicate) { FloatByteHashMap result = new FloatByteHashMap(); 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 FloatByteHashMap reject(FloatBytePredicate predicate) { FloatByteHashMap result = new FloatByteHashMap(); 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 byte max() { if (this.isEmpty()) { throw new NoSuchElementException(); } ByteIterator iterator = this.byteIterator(); byte max = iterator.next(); while (iterator.hasNext()) { byte value = iterator.next(); if (max < value) { max = value; } } return max; } public byte maxIfEmpty(byte defaultValue) { if (this.isEmpty()) { return defaultValue; } return this.max(); } public byte min() { if (this.isEmpty()) { throw new NoSuchElementException(); } ByteIterator iterator = this.byteIterator(); byte min = iterator.next(); while (iterator.hasNext()) { byte value = iterator.next(); if (value < min) { min = value; } } return min; } public byte minIfEmpty(byte 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(); } byte[] sortedArray = this.toSortedArray(); int middleIndex = sortedArray.length >> 1; if (sortedArray.length > 1 && (sortedArray.length & 1) == 0) { byte first = sortedArray[middleIndex]; byte second = sortedArray[middleIndex - 1]; return ((double) first + (double) second) / 2.0; } return (double) sortedArray[middleIndex]; } public byte[] toSortedArray() { byte[] array = this.toArray(); Arrays.sort(array); return array; } public MutableByteList toSortedList() { return ByteArrayList.newList(this).sortThis(); } public void writeExternal(ObjectOutput out) throws IOException { out.writeInt(this.size()); if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { out.writeFloat(EMPTY_KEY); out.writeByte(this.sentinelValues.zeroValue); } if (this.sentinelValues.containsOneKey) { out.writeFloat(REMOVED_KEY); out.writeByte(this.sentinelValues.oneValue); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i])) { out.writeFloat(this.keys[i]); out.writeByte(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.readFloat(), in.readByte()); } } /** * 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; float[] old = this.keys; byte[] 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(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); } private void allocateTable(int sizeToAllocate) { this.keys = new float[sizeToAllocate]; this.values = new byte[sizeToAllocate]; } 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 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 byte zeroValue; private byte oneValue; public int size() { return (this.containsZeroKey ? 1 : 0) + (this.containsOneKey ? 1 : 0); } public boolean containsValue(byte value) { boolean valueEqualsZeroValue = this.containsZeroKey && this.zeroValue == value; boolean valueEqualsOneValue = this.containsOneKey && this.oneValue == value; return valueEqualsZeroValue || valueEqualsOneValue; } } private class InternalByteIterator implements ByteIterator { private int count; private int position; private boolean handledZero; private boolean handledOne; public boolean hasNext() { return this.count < FloatByteHashMap.this.size(); } public byte next() { if (!this.hasNext()) { throw new NoSuchElementException("next() called, but the iterator is exhausted"); } this.count++; if (!this.handledZero) { this.handledZero = true; if (FloatByteHashMap.this.containsKey(EMPTY_KEY)) { return FloatByteHashMap.this.get(EMPTY_KEY); } } if (!this.handledOne) { this.handledOne = true; if (FloatByteHashMap.this.containsKey(REMOVED_KEY)) { return FloatByteHashMap.this.get(REMOVED_KEY); } } float[] keys = FloatByteHashMap.this.keys; while (!isNonSentinel(keys[this.position])) { this.position++; } byte result = FloatByteHashMap.this.values[this.position]; this.position++; return result; } } private class KeysView extends AbstractLazyFloatIterable { public FloatIterator floatIterator() { return new KeySetIterator(); } public void forEach(FloatProcedure procedure) { FloatByteHashMap.this.forEachKey(procedure); } } private class KeySetIterator implements FloatIterator { private int count; private int position; private boolean handledZero; private boolean handledOne; public boolean hasNext() { return this.count < FloatByteHashMap.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 (FloatByteHashMap.this.containsKey(EMPTY_KEY)) { return EMPTY_KEY; } } if (!this.handledOne) { this.handledOne = true; if (FloatByteHashMap.this.containsKey(REMOVED_KEY)) { return REMOVED_KEY; } } float[] keys = FloatByteHashMap.this.keys; while (!isNonSentinel(keys[this.position])) { this.position++; } float result = keys[this.position]; this.position++; return result; } } public MutableFloatSet keySet() { return new KeySet(); } private class KeySet implements MutableFloatSet { public FloatIterator floatIterator() { return new KeySetIterator(); } public void forEach(FloatProcedure procedure) { FloatByteHashMap.this.forEachKey(procedure); } public int count(FloatPredicate predicate) { int count = 0; if (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY)) { count++; } if (FloatByteHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY)) { count++; } } for (float key : FloatByteHashMap.this.keys) { if (isNonSentinel(key) && predicate.accept(key)) { count++; } } return count; } public boolean anySatisfy(FloatPredicate predicate) { if (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY)) { return true; } if (FloatByteHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY)) { return true; } } for (float key : FloatByteHashMap.this.keys) { if (isNonSentinel(key) && predicate.accept(key)) { return true; } } return false; } public boolean allSatisfy(FloatPredicate predicate) { if (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey && !predicate.accept(EMPTY_KEY)) { return false; } if (FloatByteHashMap.this.sentinelValues.containsOneKey && !predicate.accept(REMOVED_KEY)) { return false; } } for (float key : FloatByteHashMap.this.keys) { if (isNonSentinel(key) && !predicate.accept(key)) { return false; } } return true; } public boolean noneSatisfy(FloatPredicate predicate) { if (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY)) { return false; } if (FloatByteHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY)) { return false; } } for (float key : FloatByteHashMap.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 = FloatByteHashMap.this.size(); FloatByteHashMap.this.removeKey(key); return oldSize != FloatByteHashMap.this.size(); } public boolean removeAll(FloatIterable source) { int oldSize = FloatByteHashMap.this.size(); FloatIterator iterator = source.floatIterator(); while (iterator.hasNext()) { FloatByteHashMap.this.removeKey(iterator.next()); } return oldSize != FloatByteHashMap.this.size(); } public boolean removeAll(float... source) { int oldSize = FloatByteHashMap.this.size(); for (float item : source) { FloatByteHashMap.this.removeKey(item); } return oldSize != FloatByteHashMap.this.size(); } public boolean retainAll(FloatIterable source) { int oldSize = this.size(); final FloatSet sourceSet = source instanceof FloatSet ? (FloatSet) source : source.toSet(); FloatByteHashMap retained = FloatByteHashMap.this.select(new FloatBytePredicate() { public boolean accept(float key, byte value) { return sourceSet.contains(key); } }); if (retained.size() != oldSize) { FloatByteHashMap.this.keys = retained.keys; FloatByteHashMap.this.values = retained.values; FloatByteHashMap.this.sentinelValues = retained.sentinelValues; FloatByteHashMap.this.occupiedWithData = retained.occupiedWithData; FloatByteHashMap.this.occupiedWithSentinels = retained.occupiedWithSentinels; return true; } return false; } public boolean retainAll(float... source) { return this.retainAll(FloatHashSet.newSetWith(source)); } public void clear() { FloatByteHashMap.this.clear(); } public MutableFloatSet select(FloatPredicate predicate) { MutableFloatSet result = new FloatHashSet(); if (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY)) { result.add(EMPTY_KEY); } if (FloatByteHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY)) { result.add(REMOVED_KEY); } } for (float key : FloatByteHashMap.this.keys) { if (isNonSentinel(key) && predicate.accept(key)) { result.add(key); } } return result; } public MutableFloatSet reject(FloatPredicate predicate) { MutableFloatSet result = new FloatHashSet(); if (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey && !predicate.accept(EMPTY_KEY)) { result.add(EMPTY_KEY); } if (FloatByteHashMap.this.sentinelValues.containsOneKey && !predicate.accept(REMOVED_KEY)) { result.add(REMOVED_KEY); } } for (float key : FloatByteHashMap.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 (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY)) { return EMPTY_KEY; } if (FloatByteHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY)) { return REMOVED_KEY; } } for (float key : FloatByteHashMap.this.keys) { if (isNonSentinel(key) && predicate.accept(key)) { return key; } } return ifNone; } public MutableSet collect(FloatToObjectFunction function) { MutableSet result = Sets.mutable.with(); if (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey) { result.add(function.valueOf(EMPTY_KEY)); } if (FloatByteHashMap.this.sentinelValues.containsOneKey) { result.add(function.valueOf(REMOVED_KEY)); } } for (float key : FloatByteHashMap.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 (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey) { sum += EMPTY_KEY; } if (FloatByteHashMap.this.sentinelValues.containsOneKey) { sum += REMOVED_KEY; } } for (float key : FloatByteHashMap.this.keys) { if (isNonSentinel(key)) { sum += key; } } return sum; } public float max() { if (FloatByteHashMap.this.isEmpty()) { throw new NoSuchElementException(); } float max = 0; boolean isMaxSet = false; if (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey) { max = EMPTY_KEY; isMaxSet = true; } if (FloatByteHashMap.this.sentinelValues.containsOneKey && (!isMaxSet || Float.compare(max, REMOVED_KEY) < 0)) { max = REMOVED_KEY; isMaxSet = true; } } for (int i = 0; i < FloatByteHashMap.this.keys.length; i++) { if (isNonSentinel(FloatByteHashMap.this.keys[i]) && (!isMaxSet || Float.compare(max, FloatByteHashMap.this.keys[i]) < 0)) { max = FloatByteHashMap.this.keys[i]; isMaxSet = true; } } return max; } public float maxIfEmpty(float defaultValue) { if (FloatByteHashMap.this.isEmpty()) { return defaultValue; } return this.max(); } public float min() { if (FloatByteHashMap.this.isEmpty()) { throw new NoSuchElementException(); } float min = 0; boolean isMinSet = false; if (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey) { min = EMPTY_KEY; isMinSet = true; } if (FloatByteHashMap.this.sentinelValues.containsOneKey && (!isMinSet || Float.compare(REMOVED_KEY, min) < 0)) { min = REMOVED_KEY; isMinSet = true; } } for (int i = 0; i < FloatByteHashMap.this.keys.length; i++) { if (isNonSentinel(FloatByteHashMap.this.keys[i]) && (!isMinSet || Float.compare(FloatByteHashMap.this.keys[i], min) < 0)) { min = FloatByteHashMap.this.keys[i]; isMinSet = true; } } return min; } public float minIfEmpty(float defaultValue) { if (FloatByteHashMap.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 = FloatByteHashMap.this.size(); final float[] result = new float[size]; FloatByteHashMap.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 FloatByteHashMap.this.containsKey(value); } public boolean containsAll(float... source) { for (float item : source) { if (!FloatByteHashMap.this.containsKey(item)) { return false; } } return true; } public boolean containsAll(FloatIterable source) { FloatIterator iterator = source.floatIterator(); while (iterator.hasNext()) { if (!FloatByteHashMap.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 function) { T result = injectedValue; if (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey) { result = function.valueOf(result, EMPTY_KEY); } if (FloatByteHashMap.this.sentinelValues.containsOneKey) { result = function.valueOf(result, REMOVED_KEY); } } for (int i = 0; i < FloatByteHashMap.this.keys.length; i++) { if (isNonSentinel(FloatByteHashMap.this.keys[i])) { result = function.valueOf(result, FloatByteHashMap.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 FloatByteHashMap.this.size(); } public boolean isEmpty() { return FloatByteHashMap.this.isEmpty(); } public boolean notEmpty() { return FloatByteHashMap.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 (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey) { result += Float.floatToIntBits(EMPTY_KEY); } if (FloatByteHashMap.this.sentinelValues.containsOneKey) { result += Float.floatToIntBits(REMOVED_KEY); } } for (int i = 0; i < FloatByteHashMap.this.keys.length; i++) { if (isNonSentinel(FloatByteHashMap.this.keys[i])) { result += Float.floatToIntBits(FloatByteHashMap.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 (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey) { appendable.append(String.valueOf(EMPTY_KEY)); first = false; } if (FloatByteHashMap.this.sentinelValues.containsOneKey) { if (!first) { appendable.append(separator); } appendable.append(String.valueOf(REMOVED_KEY)); first = false; } } for (float key : FloatByteHashMap.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 MutableByteCollection values() { return new ValuesCollection(); } private class ValuesCollection implements MutableByteCollection { public void clear() { FloatByteHashMap.this.clear(); } public MutableByteCollection select(BytePredicate predicate) { return FloatByteHashMap.this.select(predicate); } public MutableByteCollection reject(BytePredicate predicate) { return FloatByteHashMap.this.reject(predicate); } public byte detectIfNone(BytePredicate predicate, byte ifNone) { return FloatByteHashMap.this.detectIfNone(predicate, ifNone); } public MutableCollection collect(ByteToObjectFunction function) { return FloatByteHashMap.this.collect(function); } public T injectInto(T injectedValue, ObjectByteToObjectFunction function) { return FloatByteHashMap.this.injectInto(injectedValue, function); } public long sum() { return FloatByteHashMap.this.sum(); } public byte max() { return FloatByteHashMap.this.max(); } public byte maxIfEmpty(byte defaultValue) { return FloatByteHashMap.this.maxIfEmpty(defaultValue); } public byte min() { return FloatByteHashMap.this.min(); } public byte minIfEmpty(byte defaultValue) { return FloatByteHashMap.this.minIfEmpty(defaultValue); } public double average() { return FloatByteHashMap.this.average(); } public double median() { return FloatByteHashMap.this.median(); } public byte[] toSortedArray() { return FloatByteHashMap.this.toSortedArray(); } public MutableByteList toSortedList() { return FloatByteHashMap.this.toSortedList(); } public MutableByteCollection with(byte element) { throw new UnsupportedOperationException("Cannot call with() on " + this.getClass().getSimpleName()); } public MutableByteCollection without(byte element) { throw new UnsupportedOperationException("Cannot call without() on " + this.getClass().getSimpleName()); } public MutableByteCollection withAll(ByteIterable elements) { throw new UnsupportedOperationException("Cannot call withAll() on " + this.getClass().getSimpleName()); } public MutableByteCollection withoutAll(ByteIterable elements) { throw new UnsupportedOperationException("Cannot call withoutAll() on " + this.getClass().getSimpleName()); } public MutableByteCollection asUnmodifiable() { return UnmodifiableByteCollection.of(this); } public MutableByteCollection asSynchronized() { return SynchronizedByteCollection.of(this); } public ImmutableByteCollection toImmutable() { return ByteLists.immutable.withAll(this); } public boolean contains(byte value) { return FloatByteHashMap.this.containsValue(value); } public boolean containsAll(byte... source) { return FloatByteHashMap.this.containsAll(source); } public boolean containsAll(ByteIterable source) { return FloatByteHashMap.this.containsAll(source); } public MutableByteList toList() { return FloatByteHashMap.this.toList(); } public MutableByteSet toSet() { return FloatByteHashMap.this.toSet(); } public MutableByteBag toBag() { return FloatByteHashMap.this.toBag(); } public LazyByteIterable asLazy() { return new LazyByteIterableAdapter(this); } public boolean isEmpty() { return FloatByteHashMap.this.isEmpty(); } public boolean notEmpty() { return FloatByteHashMap.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 (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey) { appendable.append(String.valueOf(FloatByteHashMap.this.sentinelValues.zeroValue)); first = false; } if (FloatByteHashMap.this.sentinelValues.containsOneKey) { if (!first) { appendable.append(separator); } appendable.append(String.valueOf(FloatByteHashMap.this.sentinelValues.oneValue)); first = false; } } for (int i = 0; i < FloatByteHashMap.this.keys.length; i++) { float key = FloatByteHashMap.this.keys[i]; if (isNonSentinel(key)) { if (!first) { appendable.append(separator); } appendable.append(String.valueOf(FloatByteHashMap.this.values[i])); first = false; } } appendable.append(end); } catch (IOException e) { throw new RuntimeException(e); } } public ByteIterator byteIterator() { return FloatByteHashMap.this.byteIterator(); } public void forEach(ByteProcedure procedure) { FloatByteHashMap.this.forEach(procedure); } public int count(BytePredicate predicate) { return FloatByteHashMap.this.count(predicate); } public boolean anySatisfy(BytePredicate predicate) { return FloatByteHashMap.this.anySatisfy(predicate); } public boolean allSatisfy(BytePredicate predicate) { return FloatByteHashMap.this.allSatisfy(predicate); } public boolean noneSatisfy(BytePredicate predicate) { return FloatByteHashMap.this.noneSatisfy(predicate); } public boolean add(byte element) { throw new UnsupportedOperationException("Cannot call add() on " + this.getClass().getSimpleName()); } public boolean addAll(byte... source) { throw new UnsupportedOperationException("Cannot call addAll() on " + this.getClass().getSimpleName()); } public boolean addAll(ByteIterable source) { throw new UnsupportedOperationException("Cannot call addAll() on " + this.getClass().getSimpleName()); } public boolean remove(byte item) { int oldSize = FloatByteHashMap.this.size(); if (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey && item == FloatByteHashMap.this.sentinelValues.zeroValue) { FloatByteHashMap.this.removeKey(EMPTY_KEY); } if (FloatByteHashMap.this.sentinelValues.containsOneKey && item == FloatByteHashMap.this.sentinelValues.oneValue) { FloatByteHashMap.this.removeKey(REMOVED_KEY); } } for (int i = 0; i < FloatByteHashMap.this.keys.length; i++) { if (isNonSentinel(FloatByteHashMap.this.keys[i]) && item == FloatByteHashMap.this.values[i]) { FloatByteHashMap.this.removeKey(FloatByteHashMap.this.keys[i]); } } return oldSize != FloatByteHashMap.this.size(); } public boolean removeAll(ByteIterable source) { int oldSize = FloatByteHashMap.this.size(); ByteIterator iterator = source.byteIterator(); while (iterator.hasNext()) { this.remove(iterator.next()); } return oldSize != FloatByteHashMap.this.size(); } public boolean removeAll(byte... source) { int oldSize = FloatByteHashMap.this.size(); for (byte item : source) { this.remove(item); } return oldSize != FloatByteHashMap.this.size(); } public boolean retainAll(ByteIterable source) { int oldSize = this.size(); final ByteSet sourceSet = source instanceof ByteSet ? (ByteSet) source : source.toSet(); FloatByteHashMap retained = FloatByteHashMap.this.select(new FloatBytePredicate() { public boolean accept(float key, byte value) { return sourceSet.contains(value); } }); if (retained.size() != oldSize) { FloatByteHashMap.this.keys = retained.keys; FloatByteHashMap.this.values = retained.values; FloatByteHashMap.this.sentinelValues = retained.sentinelValues; FloatByteHashMap.this.occupiedWithData = retained.occupiedWithData; FloatByteHashMap.this.occupiedWithSentinels = retained.occupiedWithSentinels; return true; } return false; } public boolean retainAll(byte... source) { return this.retainAll(ByteHashSet.newSetWith(source)); } public int size() { return FloatByteHashMap.this.size(); } public byte[] toArray() { return FloatByteHashMap.this.toArray(); } } private class KeyValuesView extends AbstractLazyIterable { public void forEach(Procedure procedure) { if (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey) { procedure.value(PrimitiveTuples.pair(EMPTY_KEY, FloatByteHashMap.this.sentinelValues.zeroValue)); } if (FloatByteHashMap.this.sentinelValues.containsOneKey) { procedure.value(PrimitiveTuples.pair(REMOVED_KEY, FloatByteHashMap.this.sentinelValues.oneValue)); } } for (int i = 0; i < FloatByteHashMap.this.keys.length; i++) { if (isNonSentinel(FloatByteHashMap.this.keys[i])) { procedure.value(PrimitiveTuples.pair(FloatByteHashMap.this.keys[i], FloatByteHashMap.this.values[i])); } } } public void forEachWithIndex(ObjectIntProcedure objectIntProcedure) { int index = 0; if (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey) { objectIntProcedure.value(PrimitiveTuples.pair(EMPTY_KEY, FloatByteHashMap.this.sentinelValues.zeroValue), index); index++; } if (FloatByteHashMap.this.sentinelValues.containsOneKey) { objectIntProcedure.value(PrimitiveTuples.pair(REMOVED_KEY, FloatByteHashMap.this.sentinelValues.oneValue), index); index++; } } for (int i = 0; i < FloatByteHashMap.this.keys.length; i++) { if (isNonSentinel(FloatByteHashMap.this.keys[i])) { objectIntProcedure.value(PrimitiveTuples.pair(FloatByteHashMap.this.keys[i], FloatByteHashMap.this.values[i]), index); index++; } } } public

void forEachWith(Procedure2 procedure, P parameter) { if (FloatByteHashMap.this.sentinelValues != null) { if (FloatByteHashMap.this.sentinelValues.containsZeroKey) { procedure.value(PrimitiveTuples.pair(EMPTY_KEY, FloatByteHashMap.this.sentinelValues.zeroValue), parameter); } if (FloatByteHashMap.this.sentinelValues.containsOneKey) { procedure.value(PrimitiveTuples.pair(REMOVED_KEY, FloatByteHashMap.this.sentinelValues.oneValue), parameter); } } for (int i = 0; i < FloatByteHashMap.this.keys.length; i++) { if (isNonSentinel(FloatByteHashMap.this.keys[i])) { procedure.value(PrimitiveTuples.pair(FloatByteHashMap.this.keys[i], FloatByteHashMap.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 FloatBytePair next() { if (!this.hasNext()) { throw new NoSuchElementException("next() called, but the iterator is exhausted"); } this.count++; if (!this.handledZero) { this.handledZero = true; if (FloatByteHashMap.this.containsKey(EMPTY_KEY)) { return PrimitiveTuples.pair(EMPTY_KEY, FloatByteHashMap.this.sentinelValues.zeroValue); } } if (!this.handledOne) { this.handledOne = true; if (FloatByteHashMap.this.containsKey(REMOVED_KEY)) { return PrimitiveTuples.pair(REMOVED_KEY, FloatByteHashMap.this.sentinelValues.oneValue); } } float[] keys = FloatByteHashMap.this.keys; while (!isNonSentinel(keys[this.position])) { this.position++; } FloatBytePair result = PrimitiveTuples.pair(keys[this.position], FloatByteHashMap.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 != FloatByteHashMap.this.size(); } } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy