com.koloboke.collect.impl.hash.LHashSeparateKVCharIntMapFactoryGO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of koloboke-impl-jdk8 Show documentation
Show all versions of koloboke-impl-jdk8 Show documentation
Carefully designed and efficient extension of the Java Collections Framework with primitive specializations and more, built for Java 8 (Implementation)
The newest version!
/*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.koloboke.collect.impl.hash;
import com.koloboke.collect.*;
import com.koloboke.collect.hash.*;
import com.koloboke.collect.impl.*;
import com.koloboke.collect.map.hash.HashCharIntMapFactory;
import java.util.function.Consumer;
import java.util.function.Predicate;
import com.koloboke.collect.map.hash.HashCharIntMap;
import javax.annotation.Nonnull;
import java.util.*;
import static com.koloboke.collect.impl.Containers.sizeAsInt;
import static com.koloboke.collect.impl.hash.LHashCapacities.configIsSuitableForMutableLHash;
public abstract class LHashSeparateKVCharIntMapFactoryGO
extends LHashSeparateKVCharIntMapFactorySO {
LHashSeparateKVCharIntMapFactoryGO(HashConfig hashConf, int defaultExpectedSize
, char lower, char upper) {
super(hashConf, defaultExpectedSize, lower, upper);
}
abstract HashCharIntMapFactory thisWith(HashConfig hashConf, int defaultExpectedSize, char lower, char upper);
abstract HashCharIntMapFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, char lower, char upper);
abstract HashCharIntMapFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, char lower, char upper);
@Override
public final HashCharIntMapFactory withHashConfig(@Nonnull HashConfig hashConf) {
if (configIsSuitableForMutableLHash(hashConf))
return lHashLikeThisWith(hashConf, getDefaultExpectedSize()
, getLowerKeyDomainBound(), getUpperKeyDomainBound());
return qHashLikeThisWith(hashConf, getDefaultExpectedSize()
, getLowerKeyDomainBound(), getUpperKeyDomainBound());
}
@Override
public final HashCharIntMapFactory withDefaultExpectedSize(int defaultExpectedSize) {
if (defaultExpectedSize == getDefaultExpectedSize())
return this;
return thisWith(getHashConfig(), defaultExpectedSize
, getLowerKeyDomainBound(), getUpperKeyDomainBound());
}
final HashCharIntMapFactory withDomain(char lower, char upper) {
if (lower == getLowerKeyDomainBound() && upper == getUpperKeyDomainBound())
return this;
return thisWith(getHashConfig(), getDefaultExpectedSize(), lower, upper);
}
@Override
public final HashCharIntMapFactory withKeysDomain(char lower, char upper) {
if (lower > upper)
throw new IllegalArgumentException("minPossibleKey shouldn't be greater " +
"than maxPossibleKey");
return withDomain(lower, upper);
}
@Override
public final HashCharIntMapFactory withKeysDomainComplement(char lower, char upper) {
if (lower > upper)
throw new IllegalArgumentException("minImpossibleKey shouldn't be greater " +
"than maxImpossibleKey");
return withDomain((char) (upper + 1), (char) (lower - 1));
}
@Override
public String toString() {
return "HashCharIntMapFactory[" + commonString() + keySpecialString() +
",defaultValue=" + getDefaultValue() +
"]";
}
@Override
public int hashCode() {
int hashCode = keySpecialHashCode(commonHashCode());
hashCode = hashCode * 31 + Primitives.hashCode(getDefaultValue());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj instanceof HashCharIntMapFactory) {
HashCharIntMapFactory factory = (HashCharIntMapFactory) obj;
return commonEquals(factory) && keySpecialEquals(factory) &&
// boxing to treat NaNs correctly
((Integer) getDefaultValue()).equals(factory.getDefaultValue())
;
} else {
return false;
}
}
@Override
public int getDefaultValue() {
return 0;
}
private UpdatableLHashSeparateKVCharIntMapGO shrunk(
UpdatableLHashSeparateKVCharIntMapGO map) {
Predicate shrinkCondition;
if ((shrinkCondition = hashConf.getShrinkCondition()) != null) {
if (shrinkCondition.test(map))
map.shrink();
}
return map;
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap() {
return this.newUpdatableMap(getDefaultExpectedSize());
}
@Override
@Nonnull
public MutableLHashSeparateKVCharIntMapGO newMutableMap() {
return this.newMutableMap(getDefaultExpectedSize());
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap(
Map map) {
return shrunk(super.newUpdatableMap(map));
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap(
Map map1, Map map2) {
long expectedSize = (long) map1.size();
expectedSize += (long) map2.size();
return this.newUpdatableMap(map1, map2, sizeAsInt(expectedSize));
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap(
Map map1, Map map2,
Map map3) {
long expectedSize = (long) map1.size();
expectedSize += (long) map2.size();
expectedSize += (long) map3.size();
return this.newUpdatableMap(map1, map2, map3, sizeAsInt(expectedSize));
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap(
Map map1, Map map2,
Map map3, Map map4) {
long expectedSize = (long) map1.size();
expectedSize += (long) map2.size();
expectedSize += (long) map3.size();
expectedSize += (long) map4.size();
return this.newUpdatableMap(map1, map2, map3, map4, sizeAsInt(expectedSize));
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap(
Map map1, Map map2,
Map map3, Map map4,
Map map5) {
long expectedSize = (long) map1.size();
expectedSize += (long) map2.size();
expectedSize += (long) map3.size();
expectedSize += (long) map4.size();
expectedSize += (long) map5.size();
return this.newUpdatableMap(map1, map2, map3, map4, map5, sizeAsInt(expectedSize));
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap(
Map map1, Map map2,
int expectedSize) {
UpdatableLHashSeparateKVCharIntMapGO map = newUpdatableMap(expectedSize);
map.putAll(map1);
map.putAll(map2);
return shrunk(map);
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap(
Map map1, Map map2,
Map map3, int expectedSize) {
UpdatableLHashSeparateKVCharIntMapGO map = newUpdatableMap(expectedSize);
map.putAll(map1);
map.putAll(map2);
map.putAll(map3);
return shrunk(map);
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap(
Map map1, Map map2,
Map map3, Map map4,
int expectedSize) {
UpdatableLHashSeparateKVCharIntMapGO map = newUpdatableMap(expectedSize);
map.putAll(map1);
map.putAll(map2);
map.putAll(map3);
map.putAll(map4);
return shrunk(map);
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap(
Map map1, Map map2,
Map map3, Map map4,
Map map5, int expectedSize) {
UpdatableLHashSeparateKVCharIntMapGO map = newUpdatableMap(expectedSize);
map.putAll(map1);
map.putAll(map2);
map.putAll(map3);
map.putAll(map4);
map.putAll(map5);
return shrunk(map);
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap(
Consumer entriesSupplier) {
return this.newUpdatableMap(entriesSupplier, getDefaultExpectedSize());
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap(
Consumer entriesSupplier,
int expectedSize) {
final UpdatableLHashSeparateKVCharIntMapGO map = newUpdatableMap(expectedSize);
entriesSupplier.accept(new com.koloboke.function.CharIntConsumer() {
@Override
public void accept(char k, int v) {
map.put(k, v);
}
});
return shrunk(map);
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap(
char[] keys, int[] values) {
return this.newUpdatableMap(keys, values, keys.length);
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap(
char[] keys, int[] values, int expectedSize) {
UpdatableLHashSeparateKVCharIntMapGO map = newUpdatableMap(expectedSize);
int keysLen = keys.length;
if (keysLen != values.length)
throw new IllegalArgumentException("keys and values arrays must have the same size");
for (int i = 0; i < keys.length; i++) {
map.put(keys[i], values[i]);
}
return shrunk(map);
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap(
Character[] keys, Integer[] values) {
return this.newUpdatableMap(keys, values, keys.length);
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap(
Character[] keys, Integer[] values, int expectedSize) {
UpdatableLHashSeparateKVCharIntMapGO map = newUpdatableMap(expectedSize);
int keysLen = keys.length;
if (keysLen != values.length)
throw new IllegalArgumentException("keys and values arrays must have the same size");
for (int i = 0; i < keys.length; i++) {
map.put(keys[i], values[i]);
}
return shrunk(map);
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap(
Iterable keys, Iterable values) {
int expectedSize = keys instanceof Collection ? ((Collection) keys).size() :
getDefaultExpectedSize();
return this.newUpdatableMap(keys, values, expectedSize);
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMap(
Iterable keys, Iterable values, int expectedSize) {
UpdatableLHashSeparateKVCharIntMapGO map = newUpdatableMap(expectedSize);
Iterator keysIt = keys.iterator();
Iterator valuesIt = values.iterator();
try {
while (keysIt.hasNext()) {
map.put(keysIt.next(), valuesIt.next());
}
return shrunk(map);
} catch (NoSuchElementException e) {
throw new IllegalArgumentException(
"keys and values iterables must have the same size", e);
}
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMapOf(
char k1, int v1) {
UpdatableLHashSeparateKVCharIntMapGO map = newUpdatableMap(1);
map.put(k1, v1);
return map;
}
@Override
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMapOf(
char k1, int v1, char k2, int v2) {
UpdatableLHashSeparateKVCharIntMapGO map = newUpdatableMap(2);
map.put(k1, v1);
map.put(k2, v2);
return map;
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMapOf(
char k1, int v1, char k2, int v2,
char k3, int v3) {
UpdatableLHashSeparateKVCharIntMapGO map = newUpdatableMap(3);
map.put(k1, v1);
map.put(k2, v2);
map.put(k3, v3);
return map;
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMapOf(
char k1, int v1, char k2, int v2,
char k3, int v3, char k4, int v4) {
UpdatableLHashSeparateKVCharIntMapGO map = newUpdatableMap(4);
map.put(k1, v1);
map.put(k2, v2);
map.put(k3, v3);
map.put(k4, v4);
return map;
}
@Override
@Nonnull
public UpdatableLHashSeparateKVCharIntMapGO newUpdatableMapOf(
char k1, int v1, char k2, int v2,
char k3, int v3, char k4, int v4,
char k5, int v5) {
UpdatableLHashSeparateKVCharIntMapGO map = newUpdatableMap(5);
map.put(k1, v1);
map.put(k2, v2);
map.put(k3, v3);
map.put(k4, v4);
map.put(k5, v5);
return map;
}
@Override
@Nonnull
public HashCharIntMap newMutableMap(Map map1,
Map map2, int expectedSize) {
MutableLHashSeparateKVCharIntMapGO res = uninitializedMutableMap();
res.move(this.newUpdatableMap(map1, map2, expectedSize));
return res;
}
@Override
@Nonnull
public HashCharIntMap newMutableMap(Map map1,
Map map2, Map map3, int expectedSize) {
MutableLHashSeparateKVCharIntMapGO res = uninitializedMutableMap();
res.move(this.newUpdatableMap(map1, map2, map3, expectedSize));
return res;
}
@Override
@Nonnull
public HashCharIntMap newMutableMap(Map map1,
Map map2, Map map3,
Map map4, int expectedSize) {
MutableLHashSeparateKVCharIntMapGO res = uninitializedMutableMap();
res.move(this.newUpdatableMap(map1, map2, map3, map4, expectedSize));
return res;
}
@Override
@Nonnull
public HashCharIntMap newMutableMap(Map map1,
Map map2, Map map3,
Map map4, Map map5, int expectedSize) {
MutableLHashSeparateKVCharIntMapGO res = uninitializedMutableMap();
res.move(this.newUpdatableMap(map1, map2, map3, map4, map5, expectedSize));
return res;
}
@Override
@Nonnull
public HashCharIntMap newMutableMap(
Consumer entriesSupplier
, int expectedSize) {
MutableLHashSeparateKVCharIntMapGO map = uninitializedMutableMap();
map.move(this.newUpdatableMap(entriesSupplier, expectedSize));
return map;
}
@Override
@Nonnull
public HashCharIntMap newMutableMap(char[] keys,
int[] values, int expectedSize) {
MutableLHashSeparateKVCharIntMapGO map = uninitializedMutableMap();
map.move(this.newUpdatableMap(keys, values, expectedSize));
return map;
}
@Override
@Nonnull
public HashCharIntMap newMutableMap(
Character[] keys, Integer[] values, int expectedSize) {
MutableLHashSeparateKVCharIntMapGO map = uninitializedMutableMap();
map.move(this.newUpdatableMap(keys, values, expectedSize));
return map;
}
@Override
@Nonnull
public HashCharIntMap newMutableMap(Iterable keys,
Iterable values, int expectedSize) {
MutableLHashSeparateKVCharIntMapGO map = uninitializedMutableMap();
map.move(this.newUpdatableMap(keys, values, expectedSize));
return map;
}
@Override
@Nonnull
public HashCharIntMap newMutableMap(
Map map) {
MutableLHashSeparateKVCharIntMapGO res = uninitializedMutableMap();
res.move(this.newUpdatableMap(map));
return res;
}
@Override
@Nonnull
public HashCharIntMap newMutableMap(Map map1,
Map map2) {
MutableLHashSeparateKVCharIntMapGO res = uninitializedMutableMap();
res.move(this.newUpdatableMap(map1, map2));
return res;
}
@Override
@Nonnull
public HashCharIntMap newMutableMap(Map map1,
Map map2, Map map3) {
MutableLHashSeparateKVCharIntMapGO res = uninitializedMutableMap();
res.move(this.newUpdatableMap(map1, map2, map3));
return res;
}
@Override
@Nonnull
public HashCharIntMap newMutableMap(Map map1,
Map map2, Map map3,
Map map4) {
MutableLHashSeparateKVCharIntMapGO res = uninitializedMutableMap();
res.move(this.newUpdatableMap(map1, map2, map3, map4));
return res;
}
@Override
@Nonnull
public HashCharIntMap newMutableMap(Map map1,
Map map2, Map map3,
Map map4, Map map5) {
MutableLHashSeparateKVCharIntMapGO res = uninitializedMutableMap();
res.move(this.newUpdatableMap(map1, map2, map3, map4, map5));
return res;
}
@Override
@Nonnull
public HashCharIntMap newMutableMap(
Consumer entriesSupplier
) {
MutableLHashSeparateKVCharIntMapGO map = uninitializedMutableMap();
map.move(this.newUpdatableMap(entriesSupplier));
return map;
}
@Override
@Nonnull
public HashCharIntMap newMutableMap(char[] keys,
int[] values) {
MutableLHashSeparateKVCharIntMapGO map = uninitializedMutableMap();
map.move(this.newUpdatableMap(keys, values));
return map;
}
@Override
@Nonnull
public HashCharIntMap newMutableMap(
Character[] keys, Integer[] values) {
MutableLHashSeparateKVCharIntMapGO map = uninitializedMutableMap();
map.move(this.newUpdatableMap(keys, values));
return map;
}
@Override
@Nonnull
public HashCharIntMap newMutableMap(Iterable keys,
Iterable values) {
MutableLHashSeparateKVCharIntMapGO map = uninitializedMutableMap();
map.move(this.newUpdatableMap(keys, values));
return map;
}
@Override
@Nonnull
public HashCharIntMap newMutableMapOf(char k1, int v1) {
MutableLHashSeparateKVCharIntMapGO map = uninitializedMutableMap();
map.move(this.newUpdatableMapOf(k1, v1));
return map;
}
@Override
@Nonnull
public HashCharIntMap newMutableMapOf(char k1, int v1,
char k2, int v2) {
MutableLHashSeparateKVCharIntMapGO map = uninitializedMutableMap();
map.move(this.newUpdatableMapOf(k1, v1, k2, v2));
return map;
}
@Override
@Nonnull
public HashCharIntMap newMutableMapOf(char k1, int v1,
char k2, int v2, char k3, int v3) {
MutableLHashSeparateKVCharIntMapGO map = uninitializedMutableMap();
map.move(this.newUpdatableMapOf(k1, v1, k2, v2, k3, v3));
return map;
}
@Override
@Nonnull
public HashCharIntMap newMutableMapOf(char k1, int v1,
char k2, int v2, char k3, int v3,
char k4, int v4) {
MutableLHashSeparateKVCharIntMapGO map = uninitializedMutableMap();
map.move(this.newUpdatableMapOf(k1, v1, k2, v2, k3, v3, k4, v4));
return map;
}
@Override
@Nonnull
public HashCharIntMap newMutableMapOf(char k1, int v1,
char k2, int v2, char k3, int v3,
char k4, int v4, char k5, int v5) {
MutableLHashSeparateKVCharIntMapGO map = uninitializedMutableMap();
map.move(this.newUpdatableMapOf(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5));
return map;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMap(Map map1,
Map map2, int expectedSize) {
ImmutableLHashSeparateKVCharIntMapGO res = uninitializedImmutableMap();
res.move(this.newUpdatableMap(map1, map2, expectedSize));
return res;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMap(Map map1,
Map map2, Map map3, int expectedSize) {
ImmutableLHashSeparateKVCharIntMapGO res = uninitializedImmutableMap();
res.move(this.newUpdatableMap(map1, map2, map3, expectedSize));
return res;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMap(Map map1,
Map map2, Map map3,
Map map4, int expectedSize) {
ImmutableLHashSeparateKVCharIntMapGO res = uninitializedImmutableMap();
res.move(this.newUpdatableMap(map1, map2, map3, map4, expectedSize));
return res;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMap(Map map1,
Map map2, Map map3,
Map map4, Map map5, int expectedSize) {
ImmutableLHashSeparateKVCharIntMapGO res = uninitializedImmutableMap();
res.move(this.newUpdatableMap(map1, map2, map3, map4, map5, expectedSize));
return res;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMap(
Consumer entriesSupplier
, int expectedSize) {
ImmutableLHashSeparateKVCharIntMapGO map = uninitializedImmutableMap();
map.move(this.newUpdatableMap(entriesSupplier, expectedSize));
return map;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMap(char[] keys,
int[] values, int expectedSize) {
ImmutableLHashSeparateKVCharIntMapGO map = uninitializedImmutableMap();
map.move(this.newUpdatableMap(keys, values, expectedSize));
return map;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMap(
Character[] keys, Integer[] values, int expectedSize) {
ImmutableLHashSeparateKVCharIntMapGO map = uninitializedImmutableMap();
map.move(this.newUpdatableMap(keys, values, expectedSize));
return map;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMap(Iterable keys,
Iterable values, int expectedSize) {
ImmutableLHashSeparateKVCharIntMapGO map = uninitializedImmutableMap();
map.move(this.newUpdatableMap(keys, values, expectedSize));
return map;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMap(
Map map) {
ImmutableLHashSeparateKVCharIntMapGO res = uninitializedImmutableMap();
res.move(this.newUpdatableMap(map));
return res;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMap(Map map1,
Map map2) {
ImmutableLHashSeparateKVCharIntMapGO res = uninitializedImmutableMap();
res.move(this.newUpdatableMap(map1, map2));
return res;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMap(Map map1,
Map map2, Map map3) {
ImmutableLHashSeparateKVCharIntMapGO res = uninitializedImmutableMap();
res.move(this.newUpdatableMap(map1, map2, map3));
return res;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMap(Map map1,
Map map2, Map map3,
Map map4) {
ImmutableLHashSeparateKVCharIntMapGO res = uninitializedImmutableMap();
res.move(this.newUpdatableMap(map1, map2, map3, map4));
return res;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMap(Map map1,
Map map2, Map map3,
Map map4, Map map5) {
ImmutableLHashSeparateKVCharIntMapGO res = uninitializedImmutableMap();
res.move(this.newUpdatableMap(map1, map2, map3, map4, map5));
return res;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMap(
Consumer entriesSupplier
) {
ImmutableLHashSeparateKVCharIntMapGO map = uninitializedImmutableMap();
map.move(this.newUpdatableMap(entriesSupplier));
return map;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMap(char[] keys,
int[] values) {
ImmutableLHashSeparateKVCharIntMapGO map = uninitializedImmutableMap();
map.move(this.newUpdatableMap(keys, values));
return map;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMap(
Character[] keys, Integer[] values) {
ImmutableLHashSeparateKVCharIntMapGO map = uninitializedImmutableMap();
map.move(this.newUpdatableMap(keys, values));
return map;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMap(Iterable keys,
Iterable values) {
ImmutableLHashSeparateKVCharIntMapGO map = uninitializedImmutableMap();
map.move(this.newUpdatableMap(keys, values));
return map;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMapOf(char k1, int v1) {
ImmutableLHashSeparateKVCharIntMapGO map = uninitializedImmutableMap();
map.move(this.newUpdatableMapOf(k1, v1));
return map;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMapOf(char k1, int v1,
char k2, int v2) {
ImmutableLHashSeparateKVCharIntMapGO map = uninitializedImmutableMap();
map.move(this.newUpdatableMapOf(k1, v1, k2, v2));
return map;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMapOf(char k1, int v1,
char k2, int v2, char k3, int v3) {
ImmutableLHashSeparateKVCharIntMapGO map = uninitializedImmutableMap();
map.move(this.newUpdatableMapOf(k1, v1, k2, v2, k3, v3));
return map;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMapOf(char k1, int v1,
char k2, int v2, char k3, int v3,
char k4, int v4) {
ImmutableLHashSeparateKVCharIntMapGO map = uninitializedImmutableMap();
map.move(this.newUpdatableMapOf(k1, v1, k2, v2, k3, v3, k4, v4));
return map;
}
@Override
@Nonnull
public HashCharIntMap newImmutableMapOf(char k1, int v1,
char k2, int v2, char k3, int v3,
char k4, int v4, char k5, int v5) {
ImmutableLHashSeparateKVCharIntMapGO map = uninitializedImmutableMap();
map.move(this.newUpdatableMapOf(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5));
return map;
}
}