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

com.gs.collections.impl.map.mutable.primitive.LongBooleanHashMap 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.BitSet;
import java.util.Iterator;
import java.util.NoSuchElementException;

import com.gs.collections.api.BooleanIterable;
import com.gs.collections.api.LongIterable;
import com.gs.collections.api.LazyBooleanIterable;
import com.gs.collections.api.LazyLongIterable;
import com.gs.collections.api.LazyIterable;
import com.gs.collections.api.RichIterable;
import com.gs.collections.api.bag.primitive.MutableBooleanBag;
import com.gs.collections.api.bag.primitive.MutableLongBag;
import com.gs.collections.api.block.function.primitive.BooleanFunction;
import com.gs.collections.api.block.function.primitive.BooleanFunction0;
import com.gs.collections.api.block.function.primitive.BooleanToBooleanFunction;
import com.gs.collections.api.block.function.primitive.BooleanToObjectFunction;
import com.gs.collections.api.block.function.primitive.LongToBooleanFunction;
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.ObjectBooleanToObjectFunction;
import com.gs.collections.api.block.predicate.primitive.BooleanPredicate;
import com.gs.collections.api.block.predicate.primitive.LongBooleanPredicate;
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.BooleanProcedure;
import com.gs.collections.api.block.procedure.primitive.LongBooleanProcedure;
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.ImmutableBooleanCollection;
import com.gs.collections.api.collection.primitive.MutableBooleanCollection;
import com.gs.collections.api.iterator.BooleanIterator;
import com.gs.collections.api.iterator.LongIterator;
import com.gs.collections.api.list.primitive.MutableBooleanList;
import com.gs.collections.api.list.primitive.MutableLongList;
import com.gs.collections.api.map.primitive.LongBooleanMap;
import com.gs.collections.api.map.primitive.ImmutableLongBooleanMap;
import com.gs.collections.api.map.primitive.MutableLongBooleanMap;
import com.gs.collections.api.set.MutableSet;
import com.gs.collections.api.set.primitive.BooleanSet;
import com.gs.collections.api.set.primitive.LongSet;
import com.gs.collections.api.set.primitive.ImmutableLongSet;
import com.gs.collections.api.set.primitive.MutableBooleanSet;
import com.gs.collections.api.set.primitive.MutableLongSet;
import com.gs.collections.api.tuple.primitive.LongBooleanPair;
import com.gs.collections.impl.bag.mutable.primitive.BooleanHashBag;
import com.gs.collections.impl.bag.mutable.primitive.LongHashBag;
import com.gs.collections.impl.block.factory.primitive.LongPredicates;
import com.gs.collections.impl.collection.mutable.primitive.SynchronizedBooleanCollection;
import com.gs.collections.impl.collection.mutable.primitive.UnmodifiableBooleanCollection;
import com.gs.collections.impl.factory.Sets;
import com.gs.collections.impl.factory.primitive.BooleanLists;
import com.gs.collections.impl.factory.primitive.LongBooleanMaps;
import com.gs.collections.impl.factory.primitive.LongSets;
import com.gs.collections.impl.lazy.AbstractLazyIterable;
import com.gs.collections.impl.lazy.primitive.CollectLongToObjectIterable;
import com.gs.collections.impl.lazy.primitive.LazyBooleanIterableAdapter;
import com.gs.collections.impl.lazy.primitive.LazyLongIterableAdapter;
import com.gs.collections.impl.lazy.primitive.SelectLongIterable;
import com.gs.collections.impl.list.mutable.FastList;
import com.gs.collections.impl.list.mutable.primitive.BooleanArrayList;
import com.gs.collections.impl.list.mutable.primitive.LongArrayList;
import com.gs.collections.impl.set.mutable.primitive.BooleanHashSet;
import com.gs.collections.impl.set.mutable.primitive.LongHashSet;
import com.gs.collections.impl.set.mutable.primitive.SynchronizedLongSet;
import com.gs.collections.impl.set.mutable.primitive.UnmodifiableLongSet;
import com.gs.collections.impl.tuple.primitive.PrimitiveTuples;

/**
 * This file was automatically generated from template file primitiveBooleanHashMap.stg.
 *
 * @since 3.0.
 */
public class LongBooleanHashMap implements MutableLongBooleanMap, Externalizable
{
    static final boolean EMPTY_VALUE = false;
    private static final long serialVersionUID = 1L;
    private static final long EMPTY_KEY = 0L;
    private static final long REMOVED_KEY = 1L;

    private static final float DEFAULT_LOAD_FACTOR = 0.5f;
    private static final int DEFAULT_INITIAL_CAPACITY = 8;
    private int occupied;
    private int maxSize;

    private long[] keys;
    private BitSet values;
    private float loadFactor = DEFAULT_LOAD_FACTOR;
    private SentinelValues sentinelValues;

    public LongBooleanHashMap()
    {
        this.allocate(DEFAULT_INITIAL_CAPACITY << 1);
    }

    public LongBooleanHashMap(int initialCapacity)
    {
        this(initialCapacity, DEFAULT_LOAD_FACTOR);
    }

    public LongBooleanHashMap(LongBooleanMap map)
    {
        this(Math.max(map.size(), DEFAULT_INITIAL_CAPACITY), DEFAULT_LOAD_FACTOR);

        this.putAll(map);
    }

    public LongBooleanHashMap(int initialCapacity, float loadFactor)
    {
        if (initialCapacity < 0)
        {
            throw new IllegalArgumentException("initial capacity cannot be less than 0");
        }
        this.loadFactor = loadFactor;
        this.init(this.fastCeil(initialCapacity / loadFactor));
    }

    public MutableLongBooleanMap asUnmodifiable()
    {
        return new UnmodifiableLongBooleanMap(this);
    }

    public MutableLongBooleanMap asSynchronized()
    {
        return new SynchronizedLongBooleanMap(this);
    }

    public ImmutableLongBooleanMap toImmutable()
    {
        return LongBooleanMaps.immutable.withAll(this);
    }

    public static LongBooleanHashMap newWithKeysValues(long key1, boolean value1)
    {
        return new LongBooleanHashMap(1).withKeyValue(key1, value1);
    }

    public static LongBooleanHashMap newWithKeysValues(long key1, boolean value1, long key2, boolean value2)
    {
        return new LongBooleanHashMap(2).withKeysValues(key1, value1, key2, value2);
    }

    public static LongBooleanHashMap newWithKeysValues(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3)
    {
        return new LongBooleanHashMap(3).withKeysValues(key1, value1, key2, value2, key3, value3);
    }

    public static LongBooleanHashMap newWithKeysValues(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3, long key4, boolean value4)
    {
        return new LongBooleanHashMap(4).withKeysValues(key1, value1, key2, value2, key3, value3, key4, value4);
    }

    public LongBooleanHashMap withKeyValue(long key1, boolean value1)
    {
        this.put(key1, value1);
        return this;
    }

    public LongBooleanHashMap withKeysValues(long key1, boolean value1, long key2, boolean value2)
    {
        this.put(key1, value1);
        this.put(key2, value2);
        return this;
    }

    public LongBooleanHashMap withKeysValues(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3)
    {
        this.put(key1, value1);
        this.put(key2, value2);
        this.put(key3, value3);
        return this;
    }

    public LongBooleanHashMap withKeysValues(long key1, boolean value1, long key2, boolean value2, long key3, boolean value3, long key4, boolean value4)
    {
        this.put(key1, value1);
        this.put(key2, value2);
        this.put(key3, value3);
        this.put(key4, value4);
        return this;
    }

    public LongBooleanHashMap withoutKey(long key)
    {
        this.removeKey(key);
        return this;
    }

    public LongBooleanHashMap withoutAllKeys(LongIterable keys)
    {
        keys.forEach(new LongProcedure()
        {
            public void value(long key)
            {
                LongBooleanHashMap.this.removeKey(key);
            }
        });
        return this;
    }

    private int init(int initialCapacity)
    {
        int capacity = 1;
        while (capacity < initialCapacity)
        {
            capacity <<= 1;
        }
        return this.allocate(capacity);
    }

    private int fastCeil(float v)
    {
        int possibleResult = (int) v;
        if (v - possibleResult > 0.0F)
        {
            possibleResult++;
        }
        return possibleResult;
    }

    private static boolean isEmptyKey(long key)
    {
        return key == EMPTY_KEY;
    }

    private static boolean isRemovedKey(long key)
    {
        return key == REMOVED_KEY;
    }

    private static boolean isNonSentinel(long key)
    {
        return !isEmptyKey(key) && !isRemovedKey(key);
    }

    private int allocate(int capacity)
    {
        this.allocateTable(capacity);
        this.computeMaxSize(capacity);
        return capacity;
    }

    private void allocateTable(int sizeToAllocate)
    {
        this.keys = new long[sizeToAllocate];
        this.values = new BitSet(sizeToAllocate);
    }

    private void computeMaxSize(int capacity)
    {
        // need at least one free slot for open addressing
        this.maxSize = Math.min(capacity - 1, (int) (capacity * this.loadFactor));
    }

    public int size()
    {
        return this.occupied + (this.sentinelValues == null ? 0 : this.sentinelValues.size());
    }

    public boolean isEmpty()
    {
        return this.occupied == 0 && (this.sentinelValues == null || this.sentinelValues.size() == 0);
    }

    public boolean notEmpty()
    {
        return this.occupied != 0 || (this.sentinelValues != null && this.sentinelValues.size() != 0);
    }

    private void rehash()
    {
        this.rehash(this.keys.length << 1);
    }

    private void rehash(int newCapacity)
    {
        int oldLength = this.keys.length;
        long[] old = this.keys;
        BitSet oldValues = this.values;
        this.allocate(newCapacity);
        this.occupied = 0;

        for (int i = 0; i < oldLength; i++)
        {
            if (isNonSentinel(old[i]))
            {
                this.put(old[i], oldValues.get(i));
            }
        }
    }

    // exposed for testing
    int probe(long element)
    {
        int index = this.spread(element);
        long keyAtIndex = this.keys[index];

        if (keyAtIndex == element || keyAtIndex == EMPTY_KEY)
        {
            return index;
        }

        int removedIndex = keyAtIndex == REMOVED_KEY ? 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 (this.keys[nextIndex] == element)
            {
                return nextIndex;
            }
            if (this.keys[nextIndex] == REMOVED_KEY)
            {
                if (removedIndex == -1)
                {
                    removedIndex = nextIndex;
                }
            }
            else if (this.keys[nextIndex] == EMPTY_KEY)
            {
                return removedIndex == -1 ? nextIndex : removedIndex;
            }
        }
    }

    // exposed for testing
    int spread(long element)
    {
        long code = 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);
    }

    public void clear()
    {
        this.sentinelValues = null;
        this.occupied = 0;
        Arrays.fill(this.keys, EMPTY_KEY);
        this.values.clear();
    }

    public void put(long key, boolean value)
    {
        if (isEmptyKey(key))
        {
            if (this.sentinelValues == null)
            {
                this.sentinelValues = new SentinelValues();
            }
            this.sentinelValues.containsZeroKey = true;
            this.sentinelValues.zeroValue = value;
            return;
        }

        if (isRemovedKey(key))
        {
            if (this.sentinelValues == null)
            {
                this.sentinelValues = new SentinelValues();
            }
            this.sentinelValues.containsOneKey = true;
            this.sentinelValues.oneValue = value;
            return;
        }

        int index = this.probe(key);

        if (this.keys[index] == key)
        {
            // key already present in map
            this.values.set(index, value);
            return;
        }

        this.keys[index] = key;
        this.values.set(index, value);
        ++this.occupied;
        if (this.occupied > this.maxSize)
        {
            this.rehash();
        }
    }

    public void putAll(LongBooleanMap map)
    {
        map.forEachKeyValue(new LongBooleanProcedure()
        {
            public void value(long key, boolean value)
            {
                LongBooleanHashMap.this.put(key, value);
            }
        });
    }

    public boolean containsKey(long key)
    {
        if (isEmptyKey(key))
        {
            return this.sentinelValues != null && this.sentinelValues.containsZeroKey;
        }
        if (isRemovedKey(key))
        {
            return this.sentinelValues != null && this.sentinelValues.containsOneKey;
        }
        return this.keys[this.probe(key)] == key;
    }

    public boolean containsValue(boolean value)
    {
        if (this.sentinelValues != null && this.sentinelValues.containsValue(value))
        {
            return true;
        }
        for (int i = 0; i < this.keys.length; i++)
        {
            if (isNonSentinel(this.keys[i]) && this.values.get(i) == value)
            {
                return true;
            }
        }
        return false;
    }

    public boolean contains(boolean value)
    {
        return this.containsValue(value);
    }

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

    public boolean containsAll(BooleanIterable source)
    {
        return source.allSatisfy(new BooleanPredicate()
        {
            public boolean accept(boolean value)
            {
                return LongBooleanHashMap.this.contains(value);
            }
        });
    }

    public boolean get(long key)
    {
        return this.getIfAbsent(key, EMPTY_VALUE);
    }

    public boolean getIfAbsent(long key, boolean ifAbsent)
    {
        if (isEmptyKey(key))
        {
            if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey)
            {
                return ifAbsent;
            }
            return this.sentinelValues.zeroValue;
        }
        if (isRemovedKey(key))
        {
            if (this.sentinelValues == null || !this.sentinelValues.containsOneKey)
            {
                return ifAbsent;
            }
            return this.sentinelValues.oneValue;
        }
        int index = this.probe(key);
        if (isNonSentinel(this.keys[index]))
        {
            return this.values.get(index);
        }
        return ifAbsent;
    }

    public boolean getOrThrow(long key)
    {
        if (isEmptyKey(key))
        {
            if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey)
            {
                throw new IllegalStateException("Key " + key + " not present.");
            }
            return this.sentinelValues.zeroValue;
        }
        if (isRemovedKey(key))
        {
            if (this.sentinelValues == null || !this.sentinelValues.containsOneKey)
            {
                throw new IllegalStateException("Key " + key + " not present.");
            }
            return this.sentinelValues.oneValue;
        }
        int index = this.probe(key);
        if (isNonSentinel(this.keys[index]))
        {
            return this.values.get(index);
        }
        throw new IllegalStateException("Key " + key + " not present.");
    }

    public boolean getIfAbsentPut(long key, boolean value)
    {
        if (isEmptyKey(key))
        {
            if (this.sentinelValues == null)
            {
                this.sentinelValues = new SentinelValues();
                this.sentinelValues.containsZeroKey = true;
                this.sentinelValues.zeroValue = value;
                return value;
            }
            if (this.sentinelValues.containsZeroKey)
            {
                return this.sentinelValues.zeroValue;
            }
            this.sentinelValues.containsZeroKey = true;
            this.sentinelValues.zeroValue = value;
            return value;
        }
        if (isRemovedKey(key))
        {
            if (this.sentinelValues == null)
            {
                this.sentinelValues = new SentinelValues();
                this.sentinelValues.containsOneKey = true;
                this.sentinelValues.oneValue = value;
                return value;
            }
            if (this.sentinelValues.containsOneKey)
            {
                return this.sentinelValues.oneValue;
            }
            this.sentinelValues.containsOneKey = true;
            this.sentinelValues.oneValue = value;
            return value;
        }
        int index = this.probe(key);
        if (this.keys[index] == key)
        {
            return this.values.get(index);
        }
        this.keys[index] = key;
        this.occupied++;
        this.values.set(index, value);
        return value;
    }

    public boolean getIfAbsentPut(long key, BooleanFunction0 function)
    {
        if (isEmptyKey(key))
        {
            if (this.sentinelValues == null)
            {
                boolean value = function.value();
                this.sentinelValues = new SentinelValues();
                this.sentinelValues.containsZeroKey = true;
                this.sentinelValues.zeroValue = value;
                return value;
            }
            if (this.sentinelValues.containsZeroKey)
            {
                return this.sentinelValues.zeroValue;
            }
            boolean value = function.value();
            this.sentinelValues.containsZeroKey = true;
            this.sentinelValues.zeroValue = value;
            return value;
        }
        if (isRemovedKey(key))
        {
            if (this.sentinelValues == null)
            {
                boolean value = function.value();
                this.sentinelValues = new SentinelValues();
                this.sentinelValues.containsOneKey = true;
                this.sentinelValues.oneValue = value;
                return value;
            }
            if (this.sentinelValues.containsOneKey)
            {
                return this.sentinelValues.oneValue;
            }
            boolean value = function.value();
            this.sentinelValues.containsOneKey = true;
            this.sentinelValues.oneValue = value;
            return value;
        }
        int index = this.probe(key);
        if (this.keys[index] == key)
        {
            return this.values.get(index);
        }
        this.keys[index] = key;
        this.occupied++;
        boolean value = function.value();
        this.values.set(index, value);
        return value;
    }

    public 

boolean getIfAbsentPutWith(long key, BooleanFunction function, P parameter) { if (isEmptyKey(key)) { if (this.sentinelValues == null) { boolean value = function.booleanValueOf(parameter); this.sentinelValues = new SentinelValues(); this.sentinelValues.containsZeroKey = true; this.sentinelValues.zeroValue = value; return value; } if (this.sentinelValues.containsZeroKey) { return this.sentinelValues.zeroValue; } boolean value = function.booleanValueOf(parameter); this.sentinelValues.containsZeroKey = true; this.sentinelValues.zeroValue = value; return value; } if (isRemovedKey(key)) { if (this.sentinelValues == null) { boolean value = function.booleanValueOf(parameter); this.sentinelValues = new SentinelValues(); this.sentinelValues.containsOneKey = true; this.sentinelValues.oneValue = value; return value; } if (this.sentinelValues.containsOneKey) { return this.sentinelValues.oneValue; } boolean value = function.booleanValueOf(parameter); this.sentinelValues.containsOneKey = true; this.sentinelValues.oneValue = value; return value; } int index = this.probe(key); if (this.keys[index] == key) { return this.values.get(index); } this.keys[index] = key; this.occupied++; boolean value = function.booleanValueOf(parameter); this.values.set(index, value); return value; } public boolean getIfAbsentPutWithKey(long key, LongToBooleanFunction function) { if (isEmptyKey(key)) { if (this.sentinelValues == null) { boolean value = function.valueOf(key); this.sentinelValues = new SentinelValues(); this.sentinelValues.containsZeroKey = true; this.sentinelValues.zeroValue = value; return value; } if (this.sentinelValues.containsZeroKey) { return this.sentinelValues.zeroValue; } boolean value = function.valueOf(key); this.sentinelValues.containsZeroKey = true; this.sentinelValues.zeroValue = value; return value; } if (isRemovedKey(key)) { if (this.sentinelValues == null) { boolean value = function.valueOf(key); this.sentinelValues = new SentinelValues(); this.sentinelValues.containsOneKey = true; this.sentinelValues.oneValue = value; return value; } if (this.sentinelValues.containsOneKey) { return this.sentinelValues.oneValue; } boolean value = function.valueOf(key); this.sentinelValues.containsOneKey = true; this.sentinelValues.oneValue = value; return value; } int index = this.probe(key); if (this.keys[index] == key) { return this.values.get(index); } this.keys[index] = key; this.occupied++; boolean value = function.valueOf(key); this.values.set(index, value); return value; } public boolean updateValue(long key, boolean initialValueIfAbsent, BooleanToBooleanFunction function) { if (isEmptyKey(key)) { if (this.sentinelValues == null) { this.sentinelValues = new SentinelValues(); this.sentinelValues.containsZeroKey = true; this.sentinelValues.zeroValue = function.valueOf(initialValueIfAbsent); } else if (this.sentinelValues.containsZeroKey) { this.sentinelValues.zeroValue = function.valueOf(this.sentinelValues.zeroValue); } else { this.sentinelValues.containsZeroKey = true; this.sentinelValues.zeroValue = function.valueOf(initialValueIfAbsent); } return this.sentinelValues.zeroValue; } if (isRemovedKey(key)) { if (this.sentinelValues == null) { this.sentinelValues = new SentinelValues(); this.sentinelValues.containsOneKey = true; this.sentinelValues.oneValue = function.valueOf(initialValueIfAbsent); } else if (this.sentinelValues.containsOneKey) { this.sentinelValues.oneValue = function.valueOf(this.sentinelValues.oneValue); } else { this.sentinelValues.containsOneKey = true; this.sentinelValues.oneValue = function.valueOf(initialValueIfAbsent); } return this.sentinelValues.oneValue; } int index = this.probe(key); if (this.keys[index] == key) { this.values.set(index, function.valueOf(this.values.get(index))); } else { this.keys[index] = key; this.occupied++; this.values.set(index, function.valueOf(initialValueIfAbsent)); } return this.values.get(index); } public void removeKey(long key) { if (isEmptyKey(key)) { if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey) { return; } if (this.sentinelValues.containsOneKey) { this.sentinelValues.containsZeroKey = false; this.sentinelValues.zeroValue = EMPTY_VALUE; } else { this.sentinelValues = null; } return; } if (isRemovedKey(key)) { if (this.sentinelValues == null || !this.sentinelValues.containsOneKey) { return; } if (this.sentinelValues.containsZeroKey) { this.sentinelValues.containsOneKey = false; this.sentinelValues.oneValue = EMPTY_VALUE; } else { this.sentinelValues = null; } return; } int index = this.probe(key); if (this.keys[index] == key) { this.keys[index] = REMOVED_KEY; this.occupied--; this.values.set(index, EMPTY_VALUE); } } public void remove(long key) { this.removeKey(key); } public boolean removeKeyIfAbsent(long key, boolean value) { if (isEmptyKey(key)) { if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey) { return value; } boolean oldValue = this.sentinelValues.zeroValue; if (this.sentinelValues.containsOneKey) { this.sentinelValues.containsZeroKey = false; this.sentinelValues.zeroValue = EMPTY_VALUE; } else { this.sentinelValues = null; } return oldValue; } if (isRemovedKey(key)) { if (this.sentinelValues == null || !this.sentinelValues.containsOneKey) { return value; } boolean oldValue = this.sentinelValues.oneValue; if (this.sentinelValues.containsZeroKey) { this.sentinelValues.containsOneKey = false; this.sentinelValues.oneValue = EMPTY_VALUE; } else { this.sentinelValues = null; } return oldValue; } int index = this.probe(key); if (this.keys[index] == key) { this.keys[index] = REMOVED_KEY; this.occupied--; boolean oldValue = this.values.get(index); this.values.set(index, EMPTY_VALUE); return oldValue; } return value; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof LongBooleanMap)) { return false; } LongBooleanMap other = (LongBooleanMap) 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++) { long key = this.keys[i]; if (isNonSentinel(key) && (!other.containsKey(key) || this.values.get(i) != other.getOrThrow(key))) { return false; } } return true; } @Override public int hashCode() { int result = 0; if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { result += (int) (EMPTY_KEY ^ EMPTY_KEY >>> 32) ^ (this.sentinelValues.zeroValue ? 1231 : 1237); } if (this.sentinelValues.containsOneKey) { result += (int) (REMOVED_KEY ^ REMOVED_KEY >>> 32) ^ (this.sentinelValues.oneValue ? 1231 : 1237); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i])) { result += (int) (this.keys[i] ^ this.keys[i] >>> 32) ^ (this.values.get(i) ? 1231 : 1237); } } return result; } @Override public String toString() { StringBuilder appendable = new StringBuilder(); appendable.append("{"); boolean first = true; if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { appendable.append(String.valueOf(EMPTY_KEY)).append("=").append(String.valueOf(this.sentinelValues.zeroValue)); first = false; } if (this.sentinelValues.containsOneKey) { if (!first) { appendable.append(", "); } appendable.append(String.valueOf(REMOVED_KEY)).append("=").append(String.valueOf(this.sentinelValues.oneValue)); first = false; } } for (int i = 0; i < this.keys.length; i++) { long key = this.keys[i]; if (isNonSentinel(key)) { if (!first) { appendable.append(", "); } appendable.append(String.valueOf(key)).append("=").append(String.valueOf(this.values.get(i))); first = false; } } appendable.append("}"); return appendable.toString(); } public BooleanIterator booleanIterator() { return new InternalBooleanIterator(); } public void forEach(BooleanProcedure procedure) { this.forEachValue(procedure); } public void forEachValue(BooleanProcedure procedure) { if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { procedure.value(this.sentinelValues.zeroValue); } if (this.sentinelValues.containsOneKey) { procedure.value(this.sentinelValues.oneValue); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i])) { procedure.value(this.values.get(i)); } } } public void forEachKey(LongProcedure procedure) { if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { procedure.value(EMPTY_KEY); } if (this.sentinelValues.containsOneKey) { procedure.value(REMOVED_KEY); } } for (long key : this.keys) { if (isNonSentinel(key)) { procedure.value(key); } } } public void forEachKeyValue(LongBooleanProcedure procedure) { if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { procedure.value(EMPTY_KEY, this.sentinelValues.zeroValue); } if (this.sentinelValues.containsOneKey) { procedure.value(REMOVED_KEY, this.sentinelValues.oneValue); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i])) { procedure.value(this.keys[i], this.values.get(i)); } } } public LongBooleanHashMap select(LongBooleanPredicate predicate) { LongBooleanHashMap result = new LongBooleanHashMap(); if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY, this.sentinelValues.zeroValue)) { result.put(EMPTY_KEY, this.sentinelValues.zeroValue); } if (this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY, this.sentinelValues.oneValue)) { result.put(REMOVED_KEY, this.sentinelValues.oneValue); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i]) && predicate.accept(this.keys[i], this.values.get(i))) { result.put(this.keys[i], this.values.get(i)); } } return result; } public LongBooleanHashMap reject(LongBooleanPredicate predicate) { LongBooleanHashMap result = new LongBooleanHashMap(); if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey && !predicate.accept(EMPTY_KEY, this.sentinelValues.zeroValue)) { result.put(EMPTY_KEY, this.sentinelValues.zeroValue); } if (this.sentinelValues.containsOneKey && !predicate.accept(REMOVED_KEY, this.sentinelValues.oneValue)) { result.put(REMOVED_KEY, this.sentinelValues.oneValue); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i]) && !predicate.accept(this.keys[i], this.values.get(i))) { result.put(this.keys[i], this.values.get(i)); } } return result; } public V injectInto(V injectedValue, ObjectBooleanToObjectFunction function) { V result = injectedValue; if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { result = function.valueOf(result, this.sentinelValues.zeroValue); } if (this.sentinelValues.containsOneKey) { result = function.valueOf(result, this.sentinelValues.oneValue); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i])) { result = function.valueOf(result, this.values.get(i)); } } return result; } public String makeString() { return this.makeString(", "); } public String makeString(String separator) { return this.makeString("", separator, ""); } public String makeString(String start, String separator, String end) { Appendable stringBuilder = new StringBuilder(); this.appendString(stringBuilder, start, separator, end); return stringBuilder.toString(); } public void appendString(Appendable appendable) { this.appendString(appendable, ", "); } public void appendString(Appendable appendable, String separator) { this.appendString(appendable, "", separator, ""); } public void appendString(Appendable appendable, String start, String separator, String end) { try { appendable.append(start); boolean first = true; if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { appendable.append(String.valueOf(this.sentinelValues.zeroValue)); first = false; } if (this.sentinelValues.containsOneKey) { if (!first) { appendable.append(separator); } appendable.append(String.valueOf(this.sentinelValues.oneValue)); first = false; } } for (int i = 0; i < this.keys.length; i++) { long key = this.keys[i]; if (isNonSentinel(key)) { if (!first) { appendable.append(separator); } appendable.append(String.valueOf(this.values.get(i))); first = false; } } appendable.append(end); } catch (IOException e) { throw new RuntimeException(e); } } public MutableBooleanCollection select(BooleanPredicate predicate) { BooleanArrayList result = new BooleanArrayList(); if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey && predicate.accept(this.sentinelValues.zeroValue)) { result.add(this.sentinelValues.zeroValue); } if (this.sentinelValues.containsOneKey && predicate.accept(this.sentinelValues.oneValue)) { result.add(this.sentinelValues.oneValue); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i]) && predicate.accept(this.values.get(i))) { result.add(this.values.get(i)); } } return result; } public MutableBooleanCollection reject(BooleanPredicate predicate) { BooleanArrayList result = new BooleanArrayList(); if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey && !predicate.accept(this.sentinelValues.zeroValue)) { result.add(this.sentinelValues.zeroValue); } if (this.sentinelValues.containsOneKey && !predicate.accept(this.sentinelValues.oneValue)) { result.add(this.sentinelValues.oneValue); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i]) && !predicate.accept(this.values.get(i))) { result.add(this.values.get(i)); } } return result; } public boolean detectIfNone(BooleanPredicate predicate, boolean value) { if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey && predicate.accept(this.sentinelValues.zeroValue)) { return this.sentinelValues.zeroValue; } if (this.sentinelValues.containsOneKey && predicate.accept(this.sentinelValues.oneValue)) { return this.sentinelValues.oneValue; } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i]) && predicate.accept(this.values.get(i))) { return this.values.get(i); } } return value; } public MutableCollection collect(BooleanToObjectFunction function) { FastList target = FastList.newList(this.size()); if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { target.add(function.valueOf(this.sentinelValues.zeroValue)); } if (this.sentinelValues.containsOneKey) { target.add(function.valueOf(this.sentinelValues.oneValue)); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i])) { target.add(function.valueOf(this.values.get(i))); } } return target; } public int count(BooleanPredicate predicate) { int count = 0; if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey && predicate.accept(this.sentinelValues.zeroValue)) { count++; } if (this.sentinelValues.containsOneKey && predicate.accept(this.sentinelValues.oneValue)) { count++; } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i]) && predicate.accept(this.values.get(i))) { count++; } } return count; } public boolean anySatisfy(BooleanPredicate predicate) { if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey && predicate.accept(this.sentinelValues.zeroValue)) { return true; } if (this.sentinelValues.containsOneKey && predicate.accept(this.sentinelValues.oneValue)) { return true; } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i]) && predicate.accept(this.values.get(i))) { return true; } } return false; } public boolean allSatisfy(BooleanPredicate predicate) { if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey && !predicate.accept(this.sentinelValues.zeroValue)) { return false; } if (this.sentinelValues.containsOneKey && !predicate.accept(this.sentinelValues.oneValue)) { return false; } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i]) && !predicate.accept(this.values.get(i))) { return false; } } return true; } public boolean noneSatisfy(BooleanPredicate predicate) { return !this.anySatisfy(predicate); } public boolean[] toArray() { boolean[] array = new boolean[this.size()]; int index = 0; if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { array[index] = this.sentinelValues.zeroValue; index++; } if (this.sentinelValues.containsOneKey) { array[index] = this.sentinelValues.oneValue; index++; } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i])) { array[index] = this.values.get(i); index++; } } return array; } public MutableBooleanList toList() { return BooleanArrayList.newList(this); } public MutableBooleanSet toSet() { return BooleanHashSet.newSet(this); } public MutableBooleanBag toBag() { return BooleanHashBag.newBag(this); } public LazyBooleanIterable asLazy() { return new LazyBooleanIterableAdapter(this); } public LazyLongIterable keysView() { return new KeysView(); } public RichIterable keyValuesView() { return new KeyValuesView(); } public void writeExternal(ObjectOutput out) throws IOException { out.writeInt(this.size()); out.writeFloat(this.loadFactor); if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { out.writeLong(EMPTY_KEY); out.writeBoolean(this.sentinelValues.zeroValue); } if (this.sentinelValues.containsOneKey) { out.writeLong(REMOVED_KEY); out.writeBoolean(this.sentinelValues.oneValue); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i])) { out.writeLong(this.keys[i]); out.writeBoolean(this.values.get(i)); } } } public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { int size = in.readInt(); this.loadFactor = in.readFloat(); this.init(Math.max((int) (size / this.loadFactor) + 1, DEFAULT_INITIAL_CAPACITY)); for (int i = 0; i < size; i++) { this.put(in.readLong(), in.readBoolean()); } } private static final class SentinelValues { private boolean containsZeroKey; private boolean containsOneKey; private boolean zeroValue; private boolean oneValue; public int size() { return (this.containsZeroKey ? 1 : 0) + (this.containsOneKey ? 1 : 0); } public boolean containsValue(boolean value) { boolean valueEqualsZeroValue = this.containsZeroKey && this.zeroValue == value; boolean valueEqualsOneValue = this.containsOneKey && this.oneValue == value; return valueEqualsZeroValue || valueEqualsOneValue; } } private class InternalBooleanIterator implements BooleanIterator { private int count; private int position; private boolean handledZero; private boolean handledOne; public boolean hasNext() { return this.count < LongBooleanHashMap.this.size(); } public boolean next() { if (!this.hasNext()) { throw new NoSuchElementException("next() called, but the iterator is exhausted"); } this.count++; if (!this.handledZero) { this.handledZero = true; if (LongBooleanHashMap.this.containsKey(EMPTY_KEY)) { return LongBooleanHashMap.this.sentinelValues.zeroValue; } } if (!this.handledOne) { this.handledOne = true; if (LongBooleanHashMap.this.containsKey(REMOVED_KEY)) { return LongBooleanHashMap.this.sentinelValues.oneValue; } } long[] keys = LongBooleanHashMap.this.keys; while (!isNonSentinel(keys[this.position])) { this.position++; } boolean result = LongBooleanHashMap.this.values.get(this.position); this.position++; return result; } } private class KeysView implements LazyLongIterable { public boolean isEmpty() { return LongBooleanHashMap.this.isEmpty(); } public boolean notEmpty() { return LongBooleanHashMap.this.notEmpty(); } public int size() { return LongBooleanHashMap.this.size(); } public boolean contains(long key) { return LongBooleanHashMap.this.containsKey(key); } public boolean containsAll(long... keys) { for (long key : keys) { if (!LongBooleanHashMap.this.containsKey(key)) { return false; } } return true; } public boolean containsAll(LongIterable source) { return source.allSatisfy(new LongPredicate() { public boolean accept(long key) { return LongBooleanHashMap.this.containsKey(key); } }); } public LongIterator longIterator() { return new KeySetIterator(); } public void forEach(LongProcedure procedure) { LongBooleanHashMap.this.forEachKey(procedure); } @Override public String toString() { return this.makeString("[", ", ", "]"); } public String makeString() { return this.makeString(", "); } public String makeString(String separator) { return this.makeString("", separator, ""); } public String makeString(String start, String separator, String end) { Appendable stringBuilder = new StringBuilder(); this.appendString(stringBuilder, start, separator, end); return stringBuilder.toString(); } public void appendString(Appendable appendable) { this.appendString(appendable, ", "); } public void appendString(Appendable appendable, String separator) { this.appendString(appendable, "", separator, ""); } public void appendString(Appendable appendable, String start, String separator, String end) { try { appendable.append(start); boolean first = true; if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey) { appendable.append(String.valueOf(EMPTY_KEY)); first = false; } if (LongBooleanHashMap.this.sentinelValues.containsOneKey) { if (!first) { appendable.append(separator); } appendable.append(String.valueOf(REMOVED_KEY)); first = false; } } for (long key : LongBooleanHashMap.this.keys) { if (isNonSentinel(key)) { if (!first) { appendable.append(separator); } appendable.append(String.valueOf(key)); first = false; } } appendable.append(end); } catch (IOException e) { throw new RuntimeException(e); } } public int count(LongPredicate predicate) { int count = 0; if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY)) { count++; } if (LongBooleanHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY)) { count++; } } for (long key : LongBooleanHashMap.this.keys) { if (isNonSentinel(key) && predicate.accept(key)) { count++; } } return count; } public boolean anySatisfy(LongPredicate predicate) { if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY)) { return true; } if (LongBooleanHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY)) { return true; } } for (long key : LongBooleanHashMap.this.keys) { if (isNonSentinel(key) && predicate.accept(key)) { return true; } } return false; } public boolean allSatisfy(LongPredicate predicate) { if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey && !predicate.accept(EMPTY_KEY)) { return false; } if (LongBooleanHashMap.this.sentinelValues.containsOneKey && !predicate.accept(REMOVED_KEY)) { return false; } } for (long key : LongBooleanHashMap.this.keys) { if (isNonSentinel(key) && !predicate.accept(key)) { return false; } } return true; } public boolean noneSatisfy(LongPredicate predicate) { return !this.anySatisfy(predicate); } public LazyLongIterable select(LongPredicate predicate) { return new SelectLongIterable(this, predicate); } public LazyLongIterable reject(LongPredicate predicate) { return new SelectLongIterable(this, LongPredicates.not(predicate)); } public long detectIfNone(LongPredicate predicate, long value) { if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY)) { return EMPTY_KEY; } if (LongBooleanHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY)) { return REMOVED_KEY; } } for (long key : LongBooleanHashMap.this.keys) { if (isNonSentinel(key) && predicate.accept(key)) { return key; } } return value; } public LazyIterable collect(LongToObjectFunction function) { return new CollectLongToObjectIterable(this, function); } public long sum() { long result = 0L; if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey) { result += EMPTY_KEY; } if (LongBooleanHashMap.this.sentinelValues.containsOneKey) { result += REMOVED_KEY; } } for (long key : LongBooleanHashMap.this.keys) { if (isNonSentinel(key)) { result += key; } } 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 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 long maxIfEmpty(long defaultValue) { if (this.isEmpty()) { return defaultValue; } return this.max(); } 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 long[] toArray() { int size = LongBooleanHashMap.this.size(); final long[] result = new long[size]; LongBooleanHashMap.this.forEachKey(new LongProcedure() { private int index; public void value(long each) { result[this.index] = each; this.index++; } }); return result; } public T injectInto(T injectedValue, ObjectLongToObjectFunction function) { T result = injectedValue; if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey) { result = function.valueOf(result, EMPTY_KEY); } if (LongBooleanHashMap.this.sentinelValues.containsOneKey) { result = function.valueOf(result, REMOVED_KEY); } } for (int i = 0; i < LongBooleanHashMap.this.keys.length; i++) { if (isNonSentinel(LongBooleanHashMap.this.keys[i])) { result = function.valueOf(result, LongBooleanHashMap.this.keys[i]); } } return result; } public MutableLongList toList() { return LongArrayList.newList(this); } public MutableLongList toSortedList() { return LongArrayList.newList(this).sortThis(); } public MutableLongSet toSet() { return LongHashSet.newSet(this); } public MutableLongBag toBag() { return LongHashBag.newBag(this); } public LazyLongIterable asLazy() { return this; } } public MutableLongSet keySet() { return new KeySet(); } private class KeySet implements MutableLongSet { public LongIterator longIterator() { return new KeySetIterator(); } public void forEach(LongProcedure procedure) { LongBooleanHashMap.this.forEachKey(procedure); } public int count(LongPredicate predicate) { int count = 0; if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY)) { count++; } if (LongBooleanHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY)) { count++; } } for (long key : LongBooleanHashMap.this.keys) { if (isNonSentinel(key) && predicate.accept(key)) { count++; } } return count; } public boolean anySatisfy(LongPredicate predicate) { if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY)) { return true; } if (LongBooleanHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY)) { return true; } } for (long key : LongBooleanHashMap.this.keys) { if (isNonSentinel(key) && predicate.accept(key)) { return true; } } return false; } public boolean allSatisfy(LongPredicate predicate) { if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey && !predicate.accept(EMPTY_KEY)) { return false; } if (LongBooleanHashMap.this.sentinelValues.containsOneKey && !predicate.accept(REMOVED_KEY)) { return false; } } for (long key : LongBooleanHashMap.this.keys) { if (isNonSentinel(key) && !predicate.accept(key)) { return false; } } return true; } public boolean noneSatisfy(LongPredicate predicate) { if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY)) { return false; } if (LongBooleanHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY)) { return false; } } for (long key : LongBooleanHashMap.this.keys) { if (isNonSentinel(key) && predicate.accept(key)) { return false; } } return true; } 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 key) { int oldSize = LongBooleanHashMap.this.size(); LongBooleanHashMap.this.removeKey(key); return oldSize != LongBooleanHashMap.this.size(); } public boolean removeAll(LongIterable source) { int oldSize = LongBooleanHashMap.this.size(); LongIterator iterator = source.longIterator(); while (iterator.hasNext()) { LongBooleanHashMap.this.removeKey(iterator.next()); } return oldSize != LongBooleanHashMap.this.size(); } public boolean removeAll(long... source) { int oldSize = LongBooleanHashMap.this.size(); for (long item : source) { LongBooleanHashMap.this.removeKey(item); } return oldSize != LongBooleanHashMap.this.size(); } public boolean retainAll(LongIterable source) { int oldSize = LongBooleanHashMap.this.size(); final LongSet sourceSet = source instanceof LongSet ? (LongSet) source : source.toSet(); LongBooleanHashMap retained = LongBooleanHashMap.this.select(new LongBooleanPredicate() { public boolean accept(long key, boolean value) { return sourceSet.contains(key); } }); if (retained.size() != oldSize) { LongBooleanHashMap.this.keys = retained.keys; LongBooleanHashMap.this.values = retained.values; LongBooleanHashMap.this.maxSize = retained.maxSize; LongBooleanHashMap.this.occupied = retained.occupied; LongBooleanHashMap.this.sentinelValues = retained.sentinelValues; return true; } return false; } public boolean retainAll(long... source) { return this.retainAll(LongHashSet.newSetWith(source)); } public void clear() { LongBooleanHashMap.this.clear(); } public MutableLongSet select(LongPredicate predicate) { MutableLongSet result = new LongHashSet(); if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY)) { result.add(EMPTY_KEY); } if (LongBooleanHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY)) { result.add(REMOVED_KEY); } } for (long key : LongBooleanHashMap.this.keys) { if (isNonSentinel(key) && predicate.accept(key)) { result.add(key); } } return result; } public MutableLongSet reject(LongPredicate predicate) { MutableLongSet result = new LongHashSet(); if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey && !predicate.accept(EMPTY_KEY)) { result.add(EMPTY_KEY); } if (LongBooleanHashMap.this.sentinelValues.containsOneKey && !predicate.accept(REMOVED_KEY)) { result.add(REMOVED_KEY); } } for (long key : LongBooleanHashMap.this.keys) { if (isNonSentinel(key) && !predicate.accept(key)) { result.add(key); } } return result; } public MutableLongSet with(long element) { throw new UnsupportedOperationException("Cannot call with() on " + this.getClass().getSimpleName()); } public MutableLongSet without(long element) { throw new UnsupportedOperationException("Cannot call without() on " + this.getClass().getSimpleName()); } public MutableLongSet withAll(LongIterable elements) { throw new UnsupportedOperationException("Cannot call withAll() on " + this.getClass().getSimpleName()); } public MutableLongSet withoutAll(LongIterable elements) { throw new UnsupportedOperationException("Cannot call withoutAll() on " + this.getClass().getSimpleName()); } public long detectIfNone(LongPredicate predicate, long ifNone) { if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY)) { return EMPTY_KEY; } if (LongBooleanHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY)) { return REMOVED_KEY; } } for (long key : LongBooleanHashMap.this.keys) { if (isNonSentinel(key) && predicate.accept(key)) { return key; } } return ifNone; } public MutableSet collect(LongToObjectFunction function) { MutableSet result = Sets.mutable.with(); if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey) { result.add(function.valueOf(EMPTY_KEY)); } if (LongBooleanHashMap.this.sentinelValues.containsOneKey) { result.add(function.valueOf(REMOVED_KEY)); } } for (long key : LongBooleanHashMap.this.keys) { if (isNonSentinel(key)) { result.add(function.valueOf(key)); } } return result; } public MutableLongSet asUnmodifiable() { return UnmodifiableLongSet.of(this); } public MutableLongSet asSynchronized() { return SynchronizedLongSet.of(this); } public long sum() { long sum = 0L; if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey) { sum += EMPTY_KEY; } if (LongBooleanHashMap.this.sentinelValues.containsOneKey) { sum += REMOVED_KEY; } } for (long key : LongBooleanHashMap.this.keys) { if (isNonSentinel(key)) { sum += key; } } return sum; } public long max() { if (LongBooleanHashMap.this.isEmpty()) { throw new NoSuchElementException(); } long max = 0; boolean isMaxSet = false; if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey) { max = EMPTY_KEY; isMaxSet = true; } if (LongBooleanHashMap.this.sentinelValues.containsOneKey && (!isMaxSet || max < REMOVED_KEY)) { max = REMOVED_KEY; isMaxSet = true; } } for (int i = 0; i < LongBooleanHashMap.this.keys.length; i++) { if (isNonSentinel(LongBooleanHashMap.this.keys[i]) && (!isMaxSet || max < LongBooleanHashMap.this.keys[i])) { max = LongBooleanHashMap.this.keys[i]; isMaxSet = true; } } return max; } public long maxIfEmpty(long defaultValue) { if (LongBooleanHashMap.this.isEmpty()) { return defaultValue; } return this.max(); } public long min() { if (LongBooleanHashMap.this.isEmpty()) { throw new NoSuchElementException(); } long min = 0; boolean isMinSet = false; if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey) { min = EMPTY_KEY; isMinSet = true; } if (LongBooleanHashMap.this.sentinelValues.containsOneKey && (!isMinSet || REMOVED_KEY < min)) { min = REMOVED_KEY; isMinSet = true; } } for (int i = 0; i < LongBooleanHashMap.this.keys.length; i++) { if (isNonSentinel(LongBooleanHashMap.this.keys[i]) && (!isMinSet || LongBooleanHashMap.this.keys[i] < min)) { min = LongBooleanHashMap.this.keys[i]; isMinSet = true; } } return min; } public long minIfEmpty(long defaultValue) { if (LongBooleanHashMap.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 long[] toArray() { int size = LongBooleanHashMap.this.size(); final long[] result = new long[size]; LongBooleanHashMap.this.forEachKey(new LongProcedure() { private int index; public void value(long each) { result[this.index] = each; this.index++; } }); return result; } public boolean contains(long value) { return LongBooleanHashMap.this.containsKey(value); } public boolean containsAll(long... source) { for (long item : source) { if (!LongBooleanHashMap.this.containsKey(item)) { return false; } } return true; } public boolean containsAll(LongIterable source) { LongIterator iterator = source.longIterator(); while (iterator.hasNext()) { if (!LongBooleanHashMap.this.containsKey(iterator.next())) { return false; } } return true; } 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 T injectInto(T injectedValue, ObjectLongToObjectFunction function) { T result = injectedValue; if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey) { result = function.valueOf(result, EMPTY_KEY); } if (LongBooleanHashMap.this.sentinelValues.containsOneKey) { result = function.valueOf(result, REMOVED_KEY); } } for (int i = 0; i < LongBooleanHashMap.this.keys.length; i++) { if (isNonSentinel(LongBooleanHashMap.this.keys[i])) { result = function.valueOf(result, LongBooleanHashMap.this.keys[i]); } } return result; } public LongSet freeze() { throw new UnsupportedOperationException(this.getClass().getSimpleName() + ".freeze() not implemented yet"); } public ImmutableLongSet toImmutable() { return LongSets.immutable.withAll(this); } public int size() { return LongBooleanHashMap.this.size(); } public boolean isEmpty() { return LongBooleanHashMap.this.isEmpty(); } public boolean notEmpty() { return LongBooleanHashMap.this.notEmpty(); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof LongSet)) { return false; } LongSet other = (LongSet) obj; return this.size() == other.size() && this.containsAll(other.toArray()); } @Override public int hashCode() { int result = 0; if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey) { result += (int) (EMPTY_KEY ^ EMPTY_KEY >>> 32); } if (LongBooleanHashMap.this.sentinelValues.containsOneKey) { result += (int) (REMOVED_KEY ^ REMOVED_KEY >>> 32); } } for (int i = 0; i < LongBooleanHashMap.this.keys.length; i++) { if (isNonSentinel(LongBooleanHashMap.this.keys[i])) { result += (int) (LongBooleanHashMap.this.keys[i] ^ LongBooleanHashMap.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 (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey) { appendable.append(String.valueOf(EMPTY_KEY)); first = false; } if (LongBooleanHashMap.this.sentinelValues.containsOneKey) { if (!first) { appendable.append(separator); } appendable.append(String.valueOf(REMOVED_KEY)); first = false; } } for (long key : LongBooleanHashMap.this.keys) { if (isNonSentinel(key)) { if (!first) { appendable.append(separator); } appendable.append(String.valueOf(key)); first = false; } } appendable.append(end); } catch (IOException e) { throw new RuntimeException(e); } } } public MutableBooleanCollection values() { return new ValuesCollection(); } private class ValuesCollection implements MutableBooleanCollection { public void clear() { LongBooleanHashMap.this.clear(); } public MutableBooleanCollection select(BooleanPredicate predicate) { return LongBooleanHashMap.this.select(predicate); } public MutableBooleanCollection reject(BooleanPredicate predicate) { return LongBooleanHashMap.this.reject(predicate); } public boolean detectIfNone(BooleanPredicate predicate, boolean ifNone) { return LongBooleanHashMap.this.detectIfNone(predicate, ifNone); } public MutableCollection collect(BooleanToObjectFunction function) { return LongBooleanHashMap.this.collect(function); } public MutableBooleanCollection with(boolean element) { throw new UnsupportedOperationException("Cannot call with() on " + this.getClass().getSimpleName()); } public MutableBooleanCollection without(boolean element) { throw new UnsupportedOperationException("Cannot call without() on " + this.getClass().getSimpleName()); } public MutableBooleanCollection withAll(BooleanIterable elements) { throw new UnsupportedOperationException("Cannot call withAll() on " + this.getClass().getSimpleName()); } public MutableBooleanCollection withoutAll(BooleanIterable elements) { throw new UnsupportedOperationException("Cannot call withoutAll() on " + this.getClass().getSimpleName()); } public MutableBooleanCollection asSynchronized() { return SynchronizedBooleanCollection.of(this); } public MutableBooleanCollection asUnmodifiable() { return UnmodifiableBooleanCollection.of(this); } public ImmutableBooleanCollection toImmutable() { return BooleanLists.immutable.withAll(this); } public boolean contains(boolean value) { return LongBooleanHashMap.this.containsValue(value); } public boolean containsAll(boolean... source) { return LongBooleanHashMap.this.containsAll(source); } public boolean containsAll(BooleanIterable source) { return LongBooleanHashMap.this.containsAll(source); } public MutableBooleanList toList() { return LongBooleanHashMap.this.toList(); } public MutableBooleanSet toSet() { return LongBooleanHashMap.this.toSet(); } public MutableBooleanBag toBag() { return LongBooleanHashMap.this.toBag(); } public LazyBooleanIterable asLazy() { return new LazyBooleanIterableAdapter(this); } public V injectInto(V injectedValue, ObjectBooleanToObjectFunction function) { return LongBooleanHashMap.this.injectInto(injectedValue, function); } public boolean isEmpty() { return LongBooleanHashMap.this.isEmpty(); } public boolean notEmpty() { return LongBooleanHashMap.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 (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey) { appendable.append(String.valueOf(LongBooleanHashMap.this.sentinelValues.zeroValue)); first = false; } if (LongBooleanHashMap.this.sentinelValues.containsOneKey) { if (!first) { appendable.append(separator); } appendable.append(String.valueOf(LongBooleanHashMap.this.sentinelValues.oneValue)); first = false; } } for (int i = 0; i < LongBooleanHashMap.this.keys.length; i++) { long key = LongBooleanHashMap.this.keys[i]; if (isNonSentinel(key)) { if (!first) { appendable.append(separator); } appendable.append(String.valueOf(LongBooleanHashMap.this.values.get(i))); first = false; } } appendable.append(end); } catch (IOException e) { throw new RuntimeException(e); } } public BooleanIterator booleanIterator() { return LongBooleanHashMap.this.booleanIterator(); } public void forEach(BooleanProcedure procedure) { LongBooleanHashMap.this.forEach(procedure); } public int count(BooleanPredicate predicate) { return LongBooleanHashMap.this.count(predicate); } public boolean anySatisfy(BooleanPredicate predicate) { return LongBooleanHashMap.this.anySatisfy(predicate); } public boolean allSatisfy(BooleanPredicate predicate) { return LongBooleanHashMap.this.allSatisfy(predicate); } public boolean noneSatisfy(BooleanPredicate predicate) { return LongBooleanHashMap.this.noneSatisfy(predicate); } public boolean add(boolean element) { throw new UnsupportedOperationException("Cannot call add() on " + this.getClass().getSimpleName()); } public boolean addAll(boolean... source) { throw new UnsupportedOperationException("Cannot call addAll() on " + this.getClass().getSimpleName()); } public boolean addAll(BooleanIterable source) { throw new UnsupportedOperationException("Cannot call addAll() on " + this.getClass().getSimpleName()); } public boolean remove(boolean item) { int oldSize = LongBooleanHashMap.this.size(); if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey && item == LongBooleanHashMap.this.sentinelValues.zeroValue) { LongBooleanHashMap.this.removeKey(EMPTY_KEY); } if (LongBooleanHashMap.this.sentinelValues.containsOneKey && item == LongBooleanHashMap.this.sentinelValues.oneValue) { LongBooleanHashMap.this.removeKey(REMOVED_KEY); } } for (int i = 0; i < LongBooleanHashMap.this.keys.length; i++) { if (isNonSentinel(LongBooleanHashMap.this.keys[i]) && item == LongBooleanHashMap.this.values.get(i)) { LongBooleanHashMap.this.removeKey(LongBooleanHashMap.this.keys[i]); } } return oldSize != LongBooleanHashMap.this.size(); } public boolean removeAll(BooleanIterable source) { int oldSize = LongBooleanHashMap.this.size(); BooleanIterator iterator = source.booleanIterator(); while (iterator.hasNext()) { this.remove(iterator.next()); } return oldSize != LongBooleanHashMap.this.size(); } public boolean removeAll(boolean... source) { int oldSize = LongBooleanHashMap.this.size(); for (boolean item : source) { this.remove(item); } return oldSize != LongBooleanHashMap.this.size(); } public boolean retainAll(BooleanIterable source) { int oldSize = LongBooleanHashMap.this.size(); final BooleanSet sourceSet = source instanceof BooleanSet ? (BooleanSet) source : source.toSet(); LongBooleanHashMap retained = LongBooleanHashMap.this.select(new LongBooleanPredicate() { public boolean accept(long key, boolean value) { return sourceSet.contains(value); } }); if (retained.size() != oldSize) { LongBooleanHashMap.this.keys = retained.keys; LongBooleanHashMap.this.values = retained.values; LongBooleanHashMap.this.maxSize = retained.maxSize; LongBooleanHashMap.this.occupied = retained.occupied; LongBooleanHashMap.this.sentinelValues = retained.sentinelValues; return true; } return false; } public boolean retainAll(boolean... source) { return this.retainAll(BooleanHashSet.newSetWith(source)); } public int size() { return LongBooleanHashMap.this.size(); } public boolean[] toArray() { return LongBooleanHashMap.this.toArray(); } } private class KeySetIterator implements LongIterator { private int count; private int position; private boolean handledZero; private boolean handledOne; public boolean hasNext() { return this.count < LongBooleanHashMap.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 (LongBooleanHashMap.this.containsKey(EMPTY_KEY)) { return EMPTY_KEY; } } if (!this.handledOne) { this.handledOne = true; if (LongBooleanHashMap.this.containsKey(REMOVED_KEY)) { return REMOVED_KEY; } } long[] keys = LongBooleanHashMap.this.keys; while (!isNonSentinel(keys[this.position])) { this.position++; } long result = keys[this.position]; this.position++; return result; } } private class KeyValuesView extends AbstractLazyIterable { public void forEach(Procedure procedure) { if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey) { procedure.value(PrimitiveTuples.pair(EMPTY_KEY, LongBooleanHashMap.this.sentinelValues.zeroValue)); } if (LongBooleanHashMap.this.sentinelValues.containsOneKey) { procedure.value(PrimitiveTuples.pair(REMOVED_KEY, LongBooleanHashMap.this.sentinelValues.oneValue)); } } for (int i = 0; i < LongBooleanHashMap.this.keys.length; i++) { if (isNonSentinel(LongBooleanHashMap.this.keys[i])) { procedure.value(PrimitiveTuples.pair(LongBooleanHashMap.this.keys[i], LongBooleanHashMap.this.values.get(i))); } } } public void forEachWithIndex(ObjectIntProcedure objectIntProcedure) { int index = 0; if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey) { objectIntProcedure.value(PrimitiveTuples.pair(EMPTY_KEY, LongBooleanHashMap.this.sentinelValues.zeroValue), index); index++; } if (LongBooleanHashMap.this.sentinelValues.containsOneKey) { objectIntProcedure.value(PrimitiveTuples.pair(REMOVED_KEY, LongBooleanHashMap.this.sentinelValues.oneValue), index); index++; } } for (int i = 0; i < LongBooleanHashMap.this.keys.length; i++) { if (isNonSentinel(LongBooleanHashMap.this.keys[i])) { objectIntProcedure.value(PrimitiveTuples.pair(LongBooleanHashMap.this.keys[i], LongBooleanHashMap.this.values.get(i)), index); index++; } } } public

void forEachWith(Procedure2 procedure, P parameter) { if (LongBooleanHashMap.this.sentinelValues != null) { if (LongBooleanHashMap.this.sentinelValues.containsZeroKey) { procedure.value(PrimitiveTuples.pair(EMPTY_KEY, LongBooleanHashMap.this.sentinelValues.zeroValue), parameter); } if (LongBooleanHashMap.this.sentinelValues.containsOneKey) { procedure.value(PrimitiveTuples.pair(REMOVED_KEY, LongBooleanHashMap.this.sentinelValues.oneValue), parameter); } } for (int i = 0; i < LongBooleanHashMap.this.keys.length; i++) { if (isNonSentinel(LongBooleanHashMap.this.keys[i])) { procedure.value(PrimitiveTuples.pair(LongBooleanHashMap.this.keys[i], LongBooleanHashMap.this.values.get(i)), parameter); } } } public Iterator iterator() { return new InternalKeyValuesIterator(); } public class InternalKeyValuesIterator implements Iterator { private int count; private int position; private boolean handledZero; private boolean handledOne; public LongBooleanPair next() { if (!this.hasNext()) { throw new NoSuchElementException("next() called, but the iterator is exhausted"); } this.count++; if (!this.handledZero) { this.handledZero = true; if (LongBooleanHashMap.this.containsKey(EMPTY_KEY)) { return PrimitiveTuples.pair(EMPTY_KEY, LongBooleanHashMap.this.sentinelValues.zeroValue); } } if (!this.handledOne) { this.handledOne = true; if (LongBooleanHashMap.this.containsKey(REMOVED_KEY)) { return PrimitiveTuples.pair(REMOVED_KEY, LongBooleanHashMap.this.sentinelValues.oneValue); } } long[] keys = LongBooleanHashMap.this.keys; while (!isNonSentinel(keys[this.position])) { this.position++; } LongBooleanPair result = PrimitiveTuples.pair(keys[this.position], LongBooleanHashMap.this.values.get(this.position)); this.position++; return result; } public void remove() { throw new UnsupportedOperationException("Cannot call remove() on " + this.getClass().getSimpleName()); } public boolean hasNext() { return this.count != LongBooleanHashMap.this.size(); } } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy