com.koloboke.collect.map.hash
Class HashIntIntMaps

Object
  extended by com.koloboke.collect.map.hash.HashIntIntMaps

public final class HashIntIntMaps
extends Object

This class consists only of static factory methods to construct HashIntIntMaps, and the default HashIntIntMapFactory static provider (getDefaultFactory()).

See Also:
HashIntIntMap, @KolobokeMap

Method Summary
static HashIntIntMapFactory getDefaultFactory()
          Returns the default HashIntIntMapFactory implementation, to which all static methods in this class delegate.
static HashIntIntMap newImmutableMap(Consumer<IntIntConsumer> entriesSupplier)
          Constructs a new immutable map filled with mappings consumed by the callback within the given closure.
static HashIntIntMap newImmutableMap(Consumer<IntIntConsumer> entriesSupplier, int expectedSize)
          Constructs a new immutable map filled with mappings consumed by the callback within the given closure.
static HashIntIntMap newImmutableMap(int[] keys, int[] values)
          Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
static HashIntIntMap newImmutableMap(int[] keys, int[] values, int expectedSize)
          Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
static HashIntIntMap newImmutableMap(Integer[] keys, Integer[] values)
          Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
static HashIntIntMap newImmutableMap(Integer[] keys, Integer[] values, int expectedSize)
          Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
static HashIntIntMap newImmutableMap(Iterable<Integer> keys, Iterable<Integer> values)
          Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position.
static HashIntIntMap newImmutableMap(Iterable<Integer> keys, Iterable<Integer> values, int expectedSize)
          Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position.
static HashIntIntMap newImmutableMap(Map<Integer,Integer> map)
          Constructs a new immutable map with the same mappings as the specified map.
static HashIntIntMap newImmutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2)
          Constructs a new immutable map which merge the mappings of the specified maps.
static HashIntIntMap newImmutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
static HashIntIntMap newImmutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3)
          Constructs a new immutable map which merge the mappings of the specified maps.
static HashIntIntMap newImmutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
static HashIntIntMap newImmutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3, Map<Integer,Integer> map4)
          Constructs a new immutable map which merge the mappings of the specified maps.
static HashIntIntMap newImmutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3, Map<Integer,Integer> map4, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
static HashIntIntMap newImmutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3, Map<Integer,Integer> map4, Map<Integer,Integer> map5)
          Constructs a new immutable map which merge the mappings of the specified maps.
static HashIntIntMap newImmutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3, Map<Integer,Integer> map4, Map<Integer,Integer> map5, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
static HashIntIntMap newImmutableMapOf(int k1, int v1)
          Constructs a new immutable map of the single specified mapping.
static HashIntIntMap newImmutableMapOf(int k1, int v1, int k2, int v2)
          Constructs a new immutable map of the two specified mappings.
static HashIntIntMap newImmutableMapOf(int k1, int v1, int k2, int v2, int k3, int v3)
          Constructs a new immutable map of the three specified mappings.
static HashIntIntMap newImmutableMapOf(int k1, int v1, int k2, int v2, int k3, int v3, int k4, int v4)
          Constructs a new immutable map of the four specified mappings.
static HashIntIntMap newImmutableMapOf(int k1, int v1, int k2, int v2, int k3, int v3, int k4, int v4, int k5, int v5)
          Constructs a new immutable map of the five specified mappings.
static HashIntIntMap newMutableMap()
          Constructs a new empty mutable map of the default expected size.
static HashIntIntMap newMutableMap(Consumer<IntIntConsumer> entriesSupplier)
          Constructs a new mutable map filled with mappings consumed by the callback within the given closure.
static HashIntIntMap newMutableMap(Consumer<IntIntConsumer> entriesSupplier, int expectedSize)
          Constructs a new mutable map filled with mappings consumed by the callback within the given closure.
static HashIntIntMap newMutableMap(int expectedSize)
          Constructs a new empty mutable map of the given expected size.
static HashIntIntMap newMutableMap(int[] keys, int[] values)
          Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
static HashIntIntMap newMutableMap(int[] keys, int[] values, int expectedSize)
          Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
static HashIntIntMap newMutableMap(Integer[] keys, Integer[] values)
          Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
static HashIntIntMap newMutableMap(Integer[] keys, Integer[] values, int expectedSize)
          Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
static HashIntIntMap newMutableMap(Iterable<Integer> keys, Iterable<Integer> values)
          Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position.
static HashIntIntMap newMutableMap(Iterable<Integer> keys, Iterable<Integer> values, int expectedSize)
          Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position.
static HashIntIntMap newMutableMap(Map<Integer,Integer> map)
          Constructs a new mutable map with the same mappings as the specified map.
static HashIntIntMap newMutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2)
          Constructs a new mutable map which merge the mappings of the specified maps.
static HashIntIntMap newMutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
static HashIntIntMap newMutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3)
          Constructs a new mutable map which merge the mappings of the specified maps.
static HashIntIntMap newMutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
static HashIntIntMap newMutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3, Map<Integer,Integer> map4)
          Constructs a new mutable map which merge the mappings of the specified maps.
static HashIntIntMap newMutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3, Map<Integer,Integer> map4, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
static HashIntIntMap newMutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3, Map<Integer,Integer> map4, Map<Integer,Integer> map5)
          Constructs a new mutable map which merge the mappings of the specified maps.
static HashIntIntMap newMutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3, Map<Integer,Integer> map4, Map<Integer,Integer> map5, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
static HashIntIntMap newMutableMapOf(int k1, int v1)
          Constructs a new mutable map of the single specified mapping.
static HashIntIntMap newMutableMapOf(int k1, int v1, int k2, int v2)
          Constructs a new mutable map of the two specified mappings.
static HashIntIntMap newMutableMapOf(int k1, int v1, int k2, int v2, int k3, int v3)
          Constructs a new mutable map of the three specified mappings.
static HashIntIntMap newMutableMapOf(int k1, int v1, int k2, int v2, int k3, int v3, int k4, int v4)
          Constructs a new mutable map of the four specified mappings.
static HashIntIntMap newMutableMapOf(int k1, int v1, int k2, int v2, int k3, int v3, int k4, int v4, int k5, int v5)
          Constructs a new mutable map of the five specified mappings.
static HashIntIntMap newUpdatableMap()
          Constructs a new empty updatable map of the default expected size.
static HashIntIntMap newUpdatableMap(Consumer<IntIntConsumer> entriesSupplier)
          Constructs a new updatable map filled with mappings consumed by the callback within the given closure.
static HashIntIntMap newUpdatableMap(Consumer<IntIntConsumer> entriesSupplier, int expectedSize)
          Constructs a new updatable map filled with mappings consumed by the callback within the given closure.
static HashIntIntMap newUpdatableMap(int expectedSize)
          Constructs a new empty updatable map of the given expected size.
static HashIntIntMap newUpdatableMap(int[] keys, int[] values)
          Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
static HashIntIntMap newUpdatableMap(int[] keys, int[] values, int expectedSize)
          Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
static HashIntIntMap newUpdatableMap(Integer[] keys, Integer[] values)
          Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
static HashIntIntMap newUpdatableMap(Integer[] keys, Integer[] values, int expectedSize)
          Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
static HashIntIntMap newUpdatableMap(Iterable<Integer> keys, Iterable<Integer> values)
          Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position.
static HashIntIntMap newUpdatableMap(Iterable<Integer> keys, Iterable<Integer> values, int expectedSize)
          Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position.
static HashIntIntMap newUpdatableMap(Map<Integer,Integer> map)
          Constructs a new updatable map with the same mappings as the specified map.
static HashIntIntMap newUpdatableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2)
          Constructs a new updatable map which merge the mappings of the specified maps.
static HashIntIntMap newUpdatableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
static HashIntIntMap newUpdatableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3)
          Constructs a new updatable map which merge the mappings of the specified maps.
static HashIntIntMap newUpdatableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
static HashIntIntMap newUpdatableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3, Map<Integer,Integer> map4)
          Constructs a new updatable map which merge the mappings of the specified maps.
static HashIntIntMap newUpdatableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3, Map<Integer,Integer> map4, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
static HashIntIntMap newUpdatableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3, Map<Integer,Integer> map4, Map<Integer,Integer> map5)
          Constructs a new updatable map which merge the mappings of the specified maps.
static HashIntIntMap newUpdatableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, Map<Integer,Integer> map3, Map<Integer,Integer> map4, Map<Integer,Integer> map5, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
static HashIntIntMap newUpdatableMapOf(int k1, int v1)
          Constructs a new updatable map of the single specified mapping.
static HashIntIntMap newUpdatableMapOf(int k1, int v1, int k2, int v2)
          Constructs a new updatable map of the two specified mappings.
static HashIntIntMap newUpdatableMapOf(int k1, int v1, int k2, int v2, int k3, int v3)
          Constructs a new updatable map of the three specified mappings.
static HashIntIntMap newUpdatableMapOf(int k1, int v1, int k2, int v2, int k3, int v3, int k4, int v4)
          Constructs a new updatable map of the four specified mappings.
static HashIntIntMap newUpdatableMapOf(int k1, int v1, int k2, int v2, int k3, int v3, int k4, int v4, int k5, int v5)
          Constructs a new updatable map of the five specified mappings.
 
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getDefaultFactory

@Nonnull
public static HashIntIntMapFactory getDefaultFactory()
Returns the default HashIntIntMapFactory implementation, to which all static methods in this class delegate.

Returns:
the default HashIntIntMapFactory implementation
Throws:
RuntimeException - if no implementations of HashIntIntMapFactory are provided

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap()
Constructs a new empty mutable map of the default expected size.

This method simply delegates to getDefaultFactory().newMutableMap().

Returns:
a new empty mutable map

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(int expectedSize)
Constructs a new empty mutable map of the given expected size.

This method simply delegates to getDefaultFactory().newMutableMap(expectedSize).

Parameters:
expectedSize - the expected size of the returned map
Returns:
a new empty mutable map of the given expected size

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(@Nonnull
                                                  Map<Integer,Integer> map1,
                                                  @Nonnull
                                                  Map<Integer,Integer> map2,
                                                  int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. On conflict, mappings from the map2 have priority over mappings from the map1 with the same keys.

This method simply delegates to getDefaultFactory().newMutableMap(map1, map2, expectedSize).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
expectedSize - the expected size of the returned map
Returns:
a new mutable map which merge the mappings of the specified maps

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(@Nonnull
                                                  Map<Integer,Integer> map1,
                                                  @Nonnull
                                                  Map<Integer,Integer> map2,
                                                  @Nonnull
                                                  Map<Integer,Integer> map3,
                                                  int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newMutableMap(map1, map2, map3, expectedSize).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
expectedSize - the expected size of the returned map
Returns:
a new mutable map which merge the mappings of the specified maps

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(@Nonnull
                                                  Map<Integer,Integer> map1,
                                                  @Nonnull
                                                  Map<Integer,Integer> map2,
                                                  @Nonnull
                                                  Map<Integer,Integer> map3,
                                                  @Nonnull
                                                  Map<Integer,Integer> map4,
                                                  int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newMutableMap(map1, map2, map3, map4, expectedSize).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
map4 - the fourth map to merge
expectedSize - the expected size of the returned map
Returns:
a new mutable map which merge the mappings of the specified maps

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(@Nonnull
                                                  Map<Integer,Integer> map1,
                                                  @Nonnull
                                                  Map<Integer,Integer> map2,
                                                  @Nonnull
                                                  Map<Integer,Integer> map3,
                                                  @Nonnull
                                                  Map<Integer,Integer> map4,
                                                  @Nonnull
                                                  Map<Integer,Integer> map5,
                                                  int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newMutableMap(map1, map2, map3, map4, map5, expectedSize).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
map4 - the fourth map to merge
map5 - the fifth map to merge
expectedSize - the expected size of the returned map
Returns:
a new mutable map which merge the mappings of the specified maps

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(@Nonnull
                                                  Consumer<IntIntConsumer> entriesSupplier,
                                                  int expectedSize)
Constructs a new mutable map filled with mappings consumed by the callback within the given closure. Mappings supplied later within the closure have priority over the mappings passed earlier with the same keys.

Example: TODO

This method simply delegates to getDefaultFactory().newMutableMap(entriesSupplier, expectedSize).

Parameters:
entriesSupplier - the function which supply mappings for the returned map via the callback passed in
expectedSize - the expected size of the returned map
Returns:
a new mutable map with mappings consumed by the callback within the given closure

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(@Nonnull
                                                  int[] keys,
                                                  @Nonnull
                                                  int[] values,
                                                  int expectedSize)
Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. If keys array have duplicate elements, value corresponding the key with the highest index is left in the returned map.

This method simply delegates to getDefaultFactory().newMutableMap(keys, values, expectedSize).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys array at the same index
expectedSize - the expected size of the returned map
Returns:
a new mutable map with the given mappings
Throws:
IllegalArgumentException - if keys and values arrays have different length

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(@Nonnull
                                                  Integer[] keys,
                                                  @Nonnull
                                                  Integer[] values,
                                                  int expectedSize)
Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. If keys array have duplicate elements, value corresponding the key with the highest index is left in the returned map.

This method simply delegates to getDefaultFactory().newMutableMap(keys, values, expectedSize).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys array at the same index
expectedSize - the expected size of the returned map
Returns:
a new mutable map with the given mappings
Throws:
IllegalArgumentException - if keys and values arrays have different length

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(@Nonnull
                                                  Iterable<Integer> keys,
                                                  @Nonnull
                                                  Iterable<Integer> values,
                                                  int expectedSize)
Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position. If keys have duplicate elements, value corresponding the key appeared last in the iteration is left in the returned map.

This method simply delegates to getDefaultFactory().newMutableMap(keys, values, expectedSize).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys iterable at the same iteration position
expectedSize - the expected size of the returned map
Returns:
a new mutable map with the given mappings
Throws:
IllegalArgumentException - if keys and values have different size

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(@Nonnull
                                                  Map<Integer,Integer> map)
Constructs a new mutable map with the same mappings as the specified map.

This method simply delegates to getDefaultFactory().newMutableMap(map).

Parameters:
map - the map whose mappings are to be placed in the returned map
Returns:
a new mutable map with the same mappings as the specified map

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(@Nonnull
                                                  Map<Integer,Integer> map1,
                                                  @Nonnull
                                                  Map<Integer,Integer> map2)
Constructs a new mutable map which merge the mappings of the specified maps. On conflict, mappings from the map2 have priority over mappings from the map1 with the same keys.

This method simply delegates to getDefaultFactory().newMutableMap(map1, map2).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
Returns:
a new mutable map which merge the mappings of the specified maps

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(@Nonnull
                                                  Map<Integer,Integer> map1,
                                                  @Nonnull
                                                  Map<Integer,Integer> map2,
                                                  @Nonnull
                                                  Map<Integer,Integer> map3)
Constructs a new mutable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newMutableMap(map1, map2, map3).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
Returns:
a new mutable map which merge the mappings of the specified maps

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(@Nonnull
                                                  Map<Integer,Integer> map1,
                                                  @Nonnull
                                                  Map<Integer,Integer> map2,
                                                  @Nonnull
                                                  Map<Integer,Integer> map3,
                                                  @Nonnull
                                                  Map<Integer,Integer> map4)
Constructs a new mutable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newMutableMap(map1, map2, map3, map4).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
map4 - the fourth map to merge
Returns:
a new mutable map which merge the mappings of the specified maps

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(@Nonnull
                                                  Map<Integer,Integer> map1,
                                                  @Nonnull
                                                  Map<Integer,Integer> map2,
                                                  @Nonnull
                                                  Map<Integer,Integer> map3,
                                                  @Nonnull
                                                  Map<Integer,Integer> map4,
                                                  @Nonnull
                                                  Map<Integer,Integer> map5)
Constructs a new mutable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newMutableMap(map1, map2, map3, map4, map5).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
map4 - the fourth map to merge
map5 - the fifth map to merge
Returns:
a new mutable map which merge the mappings of the specified maps

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(@Nonnull
                                                  Consumer<IntIntConsumer> entriesSupplier)
Constructs a new mutable map filled with mappings consumed by the callback within the given closure. Mappings supplied later within the closure have priority over the mappings passed earlier with the same keys.

Example: TODO

This method simply delegates to getDefaultFactory().newMutableMap(entriesSupplier).

Parameters:
entriesSupplier - the function which supply mappings for the returned map via the callback passed in
Returns:
a new mutable map with mappings consumed by the callback within the given closure

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(@Nonnull
                                                  int[] keys,
                                                  @Nonnull
                                                  int[] values)
Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. If keys array have duplicate elements, value corresponding the key with the highest index is left in the returned map.

This method simply delegates to getDefaultFactory().newMutableMap(keys, values).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys array at the same index
Returns:
a new mutable map with the given mappings
Throws:
IllegalArgumentException - if keys and values arrays have different length

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(@Nonnull
                                                  Integer[] keys,
                                                  @Nonnull
                                                  Integer[] values)
Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. If keys array have duplicate elements, value corresponding the key with the highest index is left in the returned map.

This method simply delegates to getDefaultFactory().newMutableMap(keys, values).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys array at the same index
Returns:
a new mutable map with the given mappings
Throws:
IllegalArgumentException - if keys and values arrays have different length

newMutableMap

@Nonnull
public static HashIntIntMap newMutableMap(@Nonnull
                                                  Iterable<Integer> keys,
                                                  @Nonnull
                                                  Iterable<Integer> values)
Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position. If keys have duplicate elements, value corresponding the key appeared last in the iteration is left in the returned map.

This method simply delegates to getDefaultFactory().newMutableMap(keys, values).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys iterable at the same iteration position
Returns:
a new mutable map with the given mappings
Throws:
IllegalArgumentException - if keys and values have different size

newMutableMapOf

@Nonnull
public static HashIntIntMap newMutableMapOf(int k1,
                                                    int v1)
Constructs a new mutable map of the single specified mapping.

This method simply delegates to getDefaultFactory().newMutableMapOf(k1, v1).

Parameters:
k1 - the key of the sole mapping
v1 - the value of the sole mapping
Returns:
a new mutable map of the single specified mapping

newMutableMapOf

@Nonnull
public static HashIntIntMap newMutableMapOf(int k1,
                                                    int v1,
                                                    int k2,
                                                    int v2)
Constructs a new mutable map of the two specified mappings.

This method simply delegates to getDefaultFactory().newMutableMapOf(k1, v1, k2, v2).

Parameters:
k1 - the key of the first mapping
v1 - the value of the first mapping
k2 - the key of the second mapping
v2 - the value of the second mapping
Returns:
a new mutable map of the two specified mappings

newMutableMapOf

@Nonnull
public static HashIntIntMap newMutableMapOf(int k1,
                                                    int v1,
                                                    int k2,
                                                    int v2,
                                                    int k3,
                                                    int v3)
Constructs a new mutable map of the three specified mappings.

This method simply delegates to getDefaultFactory().newMutableMapOf(k1, v1, k2, v2, k3, v3).

Parameters:
k1 - the key of the first mapping
v1 - the value of the first mapping
k2 - the key of the second mapping
v2 - the value of the second mapping
k3 - the key of the third mapping
v3 - the value of the third mapping
Returns:
a new mutable map of the three specified mappings

newMutableMapOf

@Nonnull
public static HashIntIntMap newMutableMapOf(int k1,
                                                    int v1,
                                                    int k2,
                                                    int v2,
                                                    int k3,
                                                    int v3,
                                                    int k4,
                                                    int v4)
Constructs a new mutable map of the four specified mappings.

This method simply delegates to getDefaultFactory().newMutableMapOf(k1, v1, k2, v2, k3, v3, k4, v4).

Parameters:
k1 - the key of the first mapping
v1 - the value of the first mapping
k2 - the key of the second mapping
v2 - the value of the second mapping
k3 - the key of the third mapping
v3 - the value of the third mapping
k4 - the key of the fourth mapping
v4 - the value of the fourth mapping
Returns:
a new mutable map of the four specified mappings

newMutableMapOf

@Nonnull
public static HashIntIntMap newMutableMapOf(int k1,
                                                    int v1,
                                                    int k2,
                                                    int v2,
                                                    int k3,
                                                    int v3,
                                                    int k4,
                                                    int v4,
                                                    int k5,
                                                    int v5)
Constructs a new mutable map of the five specified mappings.

This method simply delegates to getDefaultFactory().newMutableMapOf(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5).

Parameters:
k1 - the key of the first mapping
v1 - the value of the first mapping
k2 - the key of the second mapping
v2 - the value of the second mapping
k3 - the key of the third mapping
v3 - the value of the third mapping
k4 - the key of the fourth mapping
v4 - the value of the fourth mapping
k5 - the key of the fifth mapping
v5 - the value of the fifth mapping
Returns:
a new mutable map of the five specified mappings

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap()
Constructs a new empty updatable map of the default expected size.

This method simply delegates to getDefaultFactory().newUpdatableMap().

Returns:
a new empty updatable map

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(int expectedSize)
Constructs a new empty updatable map of the given expected size.

This method simply delegates to getDefaultFactory().newUpdatableMap(expectedSize).

Parameters:
expectedSize - the expected size of the returned map
Returns:
a new empty updatable map of the given expected size

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(@Nonnull
                                                    Map<Integer,Integer> map1,
                                                    @Nonnull
                                                    Map<Integer,Integer> map2,
                                                    int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. On conflict, mappings from the map2 have priority over mappings from the map1 with the same keys.

This method simply delegates to getDefaultFactory().newUpdatableMap(map1, map2, expectedSize).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
expectedSize - the expected size of the returned map
Returns:
a new updatable map which merge the mappings of the specified maps

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(@Nonnull
                                                    Map<Integer,Integer> map1,
                                                    @Nonnull
                                                    Map<Integer,Integer> map2,
                                                    @Nonnull
                                                    Map<Integer,Integer> map3,
                                                    int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newUpdatableMap(map1, map2, map3, expectedSize).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
expectedSize - the expected size of the returned map
Returns:
a new updatable map which merge the mappings of the specified maps

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(@Nonnull
                                                    Map<Integer,Integer> map1,
                                                    @Nonnull
                                                    Map<Integer,Integer> map2,
                                                    @Nonnull
                                                    Map<Integer,Integer> map3,
                                                    @Nonnull
                                                    Map<Integer,Integer> map4,
                                                    int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newUpdatableMap(map1, map2, map3, map4, expectedSize).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
map4 - the fourth map to merge
expectedSize - the expected size of the returned map
Returns:
a new updatable map which merge the mappings of the specified maps

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(@Nonnull
                                                    Map<Integer,Integer> map1,
                                                    @Nonnull
                                                    Map<Integer,Integer> map2,
                                                    @Nonnull
                                                    Map<Integer,Integer> map3,
                                                    @Nonnull
                                                    Map<Integer,Integer> map4,
                                                    @Nonnull
                                                    Map<Integer,Integer> map5,
                                                    int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newUpdatableMap(map1, map2, map3, map4, map5, expectedSize).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
map4 - the fourth map to merge
map5 - the fifth map to merge
expectedSize - the expected size of the returned map
Returns:
a new updatable map which merge the mappings of the specified maps

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(@Nonnull
                                                    Consumer<IntIntConsumer> entriesSupplier,
                                                    int expectedSize)
Constructs a new updatable map filled with mappings consumed by the callback within the given closure. Mappings supplied later within the closure have priority over the mappings passed earlier with the same keys.

Example: TODO

This method simply delegates to getDefaultFactory().newUpdatableMap(entriesSupplier, expectedSize).

Parameters:
entriesSupplier - the function which supply mappings for the returned map via the callback passed in
expectedSize - the expected size of the returned map
Returns:
a new updatable map with mappings consumed by the callback within the given closure

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(@Nonnull
                                                    int[] keys,
                                                    @Nonnull
                                                    int[] values,
                                                    int expectedSize)
Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. If keys array have duplicate elements, value corresponding the key with the highest index is left in the returned map.

This method simply delegates to getDefaultFactory().newUpdatableMap(keys, values, expectedSize).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys array at the same index
expectedSize - the expected size of the returned map
Returns:
a new updatable map with the given mappings
Throws:
IllegalArgumentException - if keys and values arrays have different length

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(@Nonnull
                                                    Integer[] keys,
                                                    @Nonnull
                                                    Integer[] values,
                                                    int expectedSize)
Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. If keys array have duplicate elements, value corresponding the key with the highest index is left in the returned map.

This method simply delegates to getDefaultFactory().newUpdatableMap(keys, values, expectedSize).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys array at the same index
expectedSize - the expected size of the returned map
Returns:
a new updatable map with the given mappings
Throws:
IllegalArgumentException - if keys and values arrays have different length

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(@Nonnull
                                                    Iterable<Integer> keys,
                                                    @Nonnull
                                                    Iterable<Integer> values,
                                                    int expectedSize)
Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position. If keys have duplicate elements, value corresponding the key appeared last in the iteration is left in the returned map.

This method simply delegates to getDefaultFactory().newUpdatableMap(keys, values, expectedSize).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys iterable at the same iteration position
expectedSize - the expected size of the returned map
Returns:
a new updatable map with the given mappings
Throws:
IllegalArgumentException - if keys and values have different size

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(@Nonnull
                                                    Map<Integer,Integer> map)
Constructs a new updatable map with the same mappings as the specified map.

This method simply delegates to getDefaultFactory().newUpdatableMap(map).

Parameters:
map - the map whose mappings are to be placed in the returned map
Returns:
a new updatable map with the same mappings as the specified map

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(@Nonnull
                                                    Map<Integer,Integer> map1,
                                                    @Nonnull
                                                    Map<Integer,Integer> map2)
Constructs a new updatable map which merge the mappings of the specified maps. On conflict, mappings from the map2 have priority over mappings from the map1 with the same keys.

This method simply delegates to getDefaultFactory().newUpdatableMap(map1, map2).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
Returns:
a new updatable map which merge the mappings of the specified maps

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(@Nonnull
                                                    Map<Integer,Integer> map1,
                                                    @Nonnull
                                                    Map<Integer,Integer> map2,
                                                    @Nonnull
                                                    Map<Integer,Integer> map3)
Constructs a new updatable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newUpdatableMap(map1, map2, map3).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
Returns:
a new updatable map which merge the mappings of the specified maps

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(@Nonnull
                                                    Map<Integer,Integer> map1,
                                                    @Nonnull
                                                    Map<Integer,Integer> map2,
                                                    @Nonnull
                                                    Map<Integer,Integer> map3,
                                                    @Nonnull
                                                    Map<Integer,Integer> map4)
Constructs a new updatable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newUpdatableMap(map1, map2, map3, map4).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
map4 - the fourth map to merge
Returns:
a new updatable map which merge the mappings of the specified maps

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(@Nonnull
                                                    Map<Integer,Integer> map1,
                                                    @Nonnull
                                                    Map<Integer,Integer> map2,
                                                    @Nonnull
                                                    Map<Integer,Integer> map3,
                                                    @Nonnull
                                                    Map<Integer,Integer> map4,
                                                    @Nonnull
                                                    Map<Integer,Integer> map5)
Constructs a new updatable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newUpdatableMap(map1, map2, map3, map4, map5).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
map4 - the fourth map to merge
map5 - the fifth map to merge
Returns:
a new updatable map which merge the mappings of the specified maps

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(@Nonnull
                                                    Consumer<IntIntConsumer> entriesSupplier)
Constructs a new updatable map filled with mappings consumed by the callback within the given closure. Mappings supplied later within the closure have priority over the mappings passed earlier with the same keys.

Example: TODO

This method simply delegates to getDefaultFactory().newUpdatableMap(entriesSupplier).

Parameters:
entriesSupplier - the function which supply mappings for the returned map via the callback passed in
Returns:
a new updatable map with mappings consumed by the callback within the given closure

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(@Nonnull
                                                    int[] keys,
                                                    @Nonnull
                                                    int[] values)
Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. If keys array have duplicate elements, value corresponding the key with the highest index is left in the returned map.

This method simply delegates to getDefaultFactory().newUpdatableMap(keys, values).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys array at the same index
Returns:
a new updatable map with the given mappings
Throws:
IllegalArgumentException - if keys and values arrays have different length

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(@Nonnull
                                                    Integer[] keys,
                                                    @Nonnull
                                                    Integer[] values)
Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. If keys array have duplicate elements, value corresponding the key with the highest index is left in the returned map.

This method simply delegates to getDefaultFactory().newUpdatableMap(keys, values).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys array at the same index
Returns:
a new updatable map with the given mappings
Throws:
IllegalArgumentException - if keys and values arrays have different length

newUpdatableMap

@Nonnull
public static HashIntIntMap newUpdatableMap(@Nonnull
                                                    Iterable<Integer> keys,
                                                    @Nonnull
                                                    Iterable<Integer> values)
Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position. If keys have duplicate elements, value corresponding the key appeared last in the iteration is left in the returned map.

This method simply delegates to getDefaultFactory().newUpdatableMap(keys, values).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys iterable at the same iteration position
Returns:
a new updatable map with the given mappings
Throws:
IllegalArgumentException - if keys and values have different size

newUpdatableMapOf

@Nonnull
public static HashIntIntMap newUpdatableMapOf(int k1,
                                                      int v1)
Constructs a new updatable map of the single specified mapping.

This method simply delegates to getDefaultFactory().newUpdatableMapOf(k1, v1).

Parameters:
k1 - the key of the sole mapping
v1 - the value of the sole mapping
Returns:
a new updatable map of the single specified mapping

newUpdatableMapOf

@Nonnull
public static HashIntIntMap newUpdatableMapOf(int k1,
                                                      int v1,
                                                      int k2,
                                                      int v2)
Constructs a new updatable map of the two specified mappings.

This method simply delegates to getDefaultFactory().newUpdatableMapOf(k1, v1, k2, v2).

Parameters:
k1 - the key of the first mapping
v1 - the value of the first mapping
k2 - the key of the second mapping
v2 - the value of the second mapping
Returns:
a new updatable map of the two specified mappings

newUpdatableMapOf

@Nonnull
public static HashIntIntMap newUpdatableMapOf(int k1,
                                                      int v1,
                                                      int k2,
                                                      int v2,
                                                      int k3,
                                                      int v3)
Constructs a new updatable map of the three specified mappings.

This method simply delegates to getDefaultFactory().newUpdatableMapOf(k1, v1, k2, v2, k3, v3).

Parameters:
k1 - the key of the first mapping
v1 - the value of the first mapping
k2 - the key of the second mapping
v2 - the value of the second mapping
k3 - the key of the third mapping
v3 - the value of the third mapping
Returns:
a new updatable map of the three specified mappings

newUpdatableMapOf

@Nonnull
public static HashIntIntMap newUpdatableMapOf(int k1,
                                                      int v1,
                                                      int k2,
                                                      int v2,
                                                      int k3,
                                                      int v3,
                                                      int k4,
                                                      int v4)
Constructs a new updatable map of the four specified mappings.

This method simply delegates to getDefaultFactory().newUpdatableMapOf(k1, v1, k2, v2, k3, v3, k4, v4).

Parameters:
k1 - the key of the first mapping
v1 - the value of the first mapping
k2 - the key of the second mapping
v2 - the value of the second mapping
k3 - the key of the third mapping
v3 - the value of the third mapping
k4 - the key of the fourth mapping
v4 - the value of the fourth mapping
Returns:
a new updatable map of the four specified mappings

newUpdatableMapOf

@Nonnull
public static HashIntIntMap newUpdatableMapOf(int k1,
                                                      int v1,
                                                      int k2,
                                                      int v2,
                                                      int k3,
                                                      int v3,
                                                      int k4,
                                                      int v4,
                                                      int k5,
                                                      int v5)
Constructs a new updatable map of the five specified mappings.

This method simply delegates to getDefaultFactory().newUpdatableMapOf(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5).

Parameters:
k1 - the key of the first mapping
v1 - the value of the first mapping
k2 - the key of the second mapping
v2 - the value of the second mapping
k3 - the key of the third mapping
v3 - the value of the third mapping
k4 - the key of the fourth mapping
v4 - the value of the fourth mapping
k5 - the key of the fifth mapping
v5 - the value of the fifth mapping
Returns:
a new updatable map of the five specified mappings

newImmutableMap

@Nonnull
public static HashIntIntMap newImmutableMap(@Nonnull
                                                    Map<Integer,Integer> map1,
                                                    @Nonnull
                                                    Map<Integer,Integer> map2,
                                                    int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. On conflict, mappings from the map2 have priority over mappings from the map1 with the same keys.

This method simply delegates to getDefaultFactory().newImmutableMap(map1, map2, expectedSize).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
expectedSize - the expected size of the returned map
Returns:
a new immutable map which merge the mappings of the specified maps

newImmutableMap

@Nonnull
public static HashIntIntMap newImmutableMap(@Nonnull
                                                    Map<Integer,Integer> map1,
                                                    @Nonnull
                                                    Map<Integer,Integer> map2,
                                                    @Nonnull
                                                    Map<Integer,Integer> map3,
                                                    int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newImmutableMap(map1, map2, map3, expectedSize).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
expectedSize - the expected size of the returned map
Returns:
a new immutable map which merge the mappings of the specified maps

newImmutableMap

@Nonnull
public static HashIntIntMap newImmutableMap(@Nonnull
                                                    Map<Integer,Integer> map1,
                                                    @Nonnull
                                                    Map<Integer,Integer> map2,
                                                    @Nonnull
                                                    Map<Integer,Integer> map3,
                                                    @Nonnull
                                                    Map<Integer,Integer> map4,
                                                    int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newImmutableMap(map1, map2, map3, map4, expectedSize).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
map4 - the fourth map to merge
expectedSize - the expected size of the returned map
Returns:
a new immutable map which merge the mappings of the specified maps

newImmutableMap

@Nonnull
public static HashIntIntMap newImmutableMap(@Nonnull
                                                    Map<Integer,Integer> map1,
                                                    @Nonnull
                                                    Map<Integer,Integer> map2,
                                                    @Nonnull
                                                    Map<Integer,Integer> map3,
                                                    @Nonnull
                                                    Map<Integer,Integer> map4,
                                                    @Nonnull
                                                    Map<Integer,Integer> map5,
                                                    int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newImmutableMap(map1, map2, map3, map4, map5, expectedSize).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
map4 - the fourth map to merge
map5 - the fifth map to merge
expectedSize - the expected size of the returned map
Returns:
a new immutable map which merge the mappings of the specified maps

newImmutableMap

@Nonnull
public static HashIntIntMap newImmutableMap(@Nonnull
                                                    Consumer<IntIntConsumer> entriesSupplier,
                                                    int expectedSize)
Constructs a new immutable map filled with mappings consumed by the callback within the given closure. Mappings supplied later within the closure have priority over the mappings passed earlier with the same keys.

Example: TODO

This method simply delegates to getDefaultFactory().newImmutableMap(entriesSupplier, expectedSize).

Parameters:
entriesSupplier - the function which supply mappings for the returned map via the callback passed in
expectedSize - the expected size of the returned map
Returns:
a new immutable map with mappings consumed by the callback within the given closure

newImmutableMap

@Nonnull
public static HashIntIntMap newImmutableMap(@Nonnull
                                                    int[] keys,
                                                    @Nonnull
                                                    int[] values,
                                                    int expectedSize)
Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. If keys array have duplicate elements, value corresponding the key with the highest index is left in the returned map.

This method simply delegates to getDefaultFactory().newImmutableMap(keys, values, expectedSize).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys array at the same index
expectedSize - the expected size of the returned map
Returns:
a new immutable map with the given mappings
Throws:
IllegalArgumentException - if keys and values arrays have different length

newImmutableMap

@Nonnull
public static HashIntIntMap newImmutableMap(@Nonnull
                                                    Integer[] keys,
                                                    @Nonnull
                                                    Integer[] values,
                                                    int expectedSize)
Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. If keys array have duplicate elements, value corresponding the key with the highest index is left in the returned map.

This method simply delegates to getDefaultFactory().newImmutableMap(keys, values, expectedSize).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys array at the same index
expectedSize - the expected size of the returned map
Returns:
a new immutable map with the given mappings
Throws:
IllegalArgumentException - if keys and values arrays have different length

newImmutableMap

@Nonnull
public static HashIntIntMap newImmutableMap(@Nonnull
                                                    Iterable<Integer> keys,
                                                    @Nonnull
                                                    Iterable<Integer> values,
                                                    int expectedSize)
Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position. If keys have duplicate elements, value corresponding the key appeared last in the iteration is left in the returned map.

This method simply delegates to getDefaultFactory().newImmutableMap(keys, values, expectedSize).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys iterable at the same iteration position
expectedSize - the expected size of the returned map
Returns:
a new immutable map with the given mappings
Throws:
IllegalArgumentException - if keys and values have different size

newImmutableMap

@Nonnull
public static HashIntIntMap newImmutableMap(@Nonnull
                                                    Map<Integer,Integer> map)
Constructs a new immutable map with the same mappings as the specified map.

This method simply delegates to getDefaultFactory().newImmutableMap(map).

Parameters:
map - the map whose mappings are to be placed in the returned map
Returns:
a new immutable map with the same mappings as the specified map

newImmutableMap

@Nonnull
public static HashIntIntMap newImmutableMap(@Nonnull
                                                    Map<Integer,Integer> map1,
                                                    @Nonnull
                                                    Map<Integer,Integer> map2)
Constructs a new immutable map which merge the mappings of the specified maps. On conflict, mappings from the map2 have priority over mappings from the map1 with the same keys.

This method simply delegates to getDefaultFactory().newImmutableMap(map1, map2).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
Returns:
a new immutable map which merge the mappings of the specified maps

newImmutableMap

@Nonnull
public static HashIntIntMap newImmutableMap(@Nonnull
                                                    Map<Integer,Integer> map1,
                                                    @Nonnull
                                                    Map<Integer,Integer> map2,
                                                    @Nonnull
                                                    Map<Integer,Integer> map3)
Constructs a new immutable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newImmutableMap(map1, map2, map3).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
Returns:
a new immutable map which merge the mappings of the specified maps

newImmutableMap

@Nonnull
public static HashIntIntMap newImmutableMap(@Nonnull
                                                    Map<Integer,Integer> map1,
                                                    @Nonnull
                                                    Map<Integer,Integer> map2,
                                                    @Nonnull
                                                    Map<Integer,Integer> map3,
                                                    @Nonnull
                                                    Map<Integer,Integer> map4)
Constructs a new immutable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newImmutableMap(map1, map2, map3, map4).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
map4 - the fourth map to merge
Returns:
a new immutable map which merge the mappings of the specified maps

newImmutableMap

@Nonnull
public static HashIntIntMap newImmutableMap(@Nonnull
                                                    Map<Integer,Integer> map1,
                                                    @Nonnull
                                                    Map<Integer,Integer> map2,
                                                    @Nonnull
                                                    Map<Integer,Integer> map3,
                                                    @Nonnull
                                                    Map<Integer,Integer> map4,
                                                    @Nonnull
                                                    Map<Integer,Integer> map5)
Constructs a new immutable map which merge the mappings of the specified maps. On conflict, mappings from the maps passed later in the argument list have priority over mappings from the maps passed earlier with the same keys.

This method simply delegates to getDefaultFactory().newImmutableMap(map1, map2, map3, map4, map5).

Parameters:
map1 - the first map to merge
map2 - the second map to merge
map3 - the third map to merge
map4 - the fourth map to merge
map5 - the fifth map to merge
Returns:
a new immutable map which merge the mappings of the specified maps

newImmutableMap

@Nonnull
public static HashIntIntMap newImmutableMap(@Nonnull
                                                    Consumer<IntIntConsumer> entriesSupplier)
Constructs a new immutable map filled with mappings consumed by the callback within the given closure. Mappings supplied later within the closure have priority over the mappings passed earlier with the same keys.

Example: TODO

This method simply delegates to getDefaultFactory().newImmutableMap(entriesSupplier).

Parameters:
entriesSupplier - the function which supply mappings for the returned map via the callback passed in
Returns:
a new immutable map with mappings consumed by the callback within the given closure

newImmutableMap

@Nonnull
public static HashIntIntMap newImmutableMap(@Nonnull
                                                    int[] keys,
                                                    @Nonnull
                                                    int[] values)
Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. If keys array have duplicate elements, value corresponding the key with the highest index is left in the returned map.

This method simply delegates to getDefaultFactory().newImmutableMap(keys, values).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys array at the same index
Returns:
a new immutable map with the given mappings
Throws:
IllegalArgumentException - if keys and values arrays have different length

newImmutableMap

@Nonnull
public static HashIntIntMap newImmutableMap(@Nonnull
                                                    Integer[] keys,
                                                    @Nonnull
                                                    Integer[] values)
Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. If keys array have duplicate elements, value corresponding the key with the highest index is left in the returned map.

This method simply delegates to getDefaultFactory().newImmutableMap(keys, values).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys array at the same index
Returns:
a new immutable map with the given mappings
Throws:
IllegalArgumentException - if keys and values arrays have different length

newImmutableMap

@Nonnull
public static HashIntIntMap newImmutableMap(@Nonnull
                                                    Iterable<Integer> keys,
                                                    @Nonnull
                                                    Iterable<Integer> values)
Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position. If keys have duplicate elements, value corresponding the key appeared last in the iteration is left in the returned map.

This method simply delegates to getDefaultFactory().newImmutableMap(keys, values).

Parameters:
keys - the keys of the returned map
values - the values of the returned map, each value is associated with the element of the keys iterable at the same iteration position
Returns:
a new immutable map with the given mappings
Throws:
IllegalArgumentException - if keys and values have different size

newImmutableMapOf

@Nonnull
public static HashIntIntMap newImmutableMapOf(int k1,
                                                      int v1)
Constructs a new immutable map of the single specified mapping.

This method simply delegates to getDefaultFactory().newImmutableMapOf(k1, v1).

Parameters:
k1 - the key of the sole mapping
v1 - the value of the sole mapping
Returns:
a new immutable map of the single specified mapping

newImmutableMapOf

@Nonnull
public static HashIntIntMap newImmutableMapOf(int k1,
                                                      int v1,
                                                      int k2,
                                                      int v2)
Constructs a new immutable map of the two specified mappings.

This method simply delegates to getDefaultFactory().newImmutableMapOf(k1, v1, k2, v2).

Parameters:
k1 - the key of the first mapping
v1 - the value of the first mapping
k2 - the key of the second mapping
v2 - the value of the second mapping
Returns:
a new immutable map of the two specified mappings

newImmutableMapOf

@Nonnull
public static HashIntIntMap newImmutableMapOf(int k1,
                                                      int v1,
                                                      int k2,
                                                      int v2,
                                                      int k3,
                                                      int v3)
Constructs a new immutable map of the three specified mappings.

This method simply delegates to getDefaultFactory().newImmutableMapOf(k1, v1, k2, v2, k3, v3).

Parameters:
k1 - the key of the first mapping
v1 - the value of the first mapping
k2 - the key of the second mapping
v2 - the value of the second mapping
k3 - the key of the third mapping
v3 - the value of the third mapping
Returns:
a new immutable map of the three specified mappings

newImmutableMapOf

@Nonnull
public static HashIntIntMap newImmutableMapOf(int k1,
                                                      int v1,
                                                      int k2,
                                                      int v2,
                                                      int k3,
                                                      int v3,
                                                      int k4,
                                                      int v4)
Constructs a new immutable map of the four specified mappings.

This method simply delegates to getDefaultFactory().newImmutableMapOf(k1, v1, k2, v2, k3, v3, k4, v4).

Parameters:
k1 - the key of the first mapping
v1 - the value of the first mapping
k2 - the key of the second mapping
v2 - the value of the second mapping
k3 - the key of the third mapping
v3 - the value of the third mapping
k4 - the key of the fourth mapping
v4 - the value of the fourth mapping
Returns:
a new immutable map of the four specified mappings

newImmutableMapOf

@Nonnull
public static HashIntIntMap newImmutableMapOf(int k1,
                                                      int v1,
                                                      int k2,
                                                      int v2,
                                                      int k3,
                                                      int v3,
                                                      int k4,
                                                      int v4,
                                                      int k5,
                                                      int v5)
Constructs a new immutable map of the five specified mappings.

This method simply delegates to getDefaultFactory().newImmutableMapOf(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5).

Parameters:
k1 - the key of the first mapping
v1 - the value of the first mapping
k2 - the key of the second mapping
v2 - the value of the second mapping
k3 - the key of the third mapping
v3 - the value of the third mapping
k4 - the key of the fourth mapping
v4 - the value of the fourth mapping
k5 - the key of the fifth mapping
v5 - the value of the fifth mapping
Returns:
a new immutable map of the five specified mappings