Uses of Interface
com.koloboke.collect.map.IntIntMap

Packages that use IntIntMap
com.koloboke.collect.map Contains interfaces of Map specializations, their factories and cursors. 
com.koloboke.collect.map.hash Contains interfaces of Map specializations, based on hash tables, their factories and static factory methods. 
 

Uses of IntIntMap in com.koloboke.collect.map
 

Methods in com.koloboke.collect.map that return IntIntMap
 IntIntMap IntIntMapFactory.newImmutableMap(Consumer<IntIntConsumer> entriesSupplier)
          Constructs a new immutable map filled with mappings consumed by the callback within the given closure.
 IntIntMap IntIntMapFactory.newImmutableMap(Consumer<IntIntConsumer> entriesSupplier, int expectedSize)
          Constructs a new immutable map filled with mappings consumed by the callback within the given closure.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.newImmutableMap(Map<Integer,Integer> map)
          Constructs a new immutable map with the same mappings as the specified map.
 IntIntMap IntIntMapFactory.newImmutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2)
          Constructs a new immutable map which merge the mappings of the specified maps.
 IntIntMap IntIntMapFactory.newImmutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.newImmutableMapOf(int k1, int v1)
          Constructs a new immutable map of the single specified mapping.
 IntIntMap IntIntMapFactory.newImmutableMapOf(int k1, int v1, int k2, int v2)
          Constructs a new immutable map of the two specified mappings.
 IntIntMap IntIntMapFactory.newImmutableMapOf(int k1, int v1, int k2, int v2, int k3, int v3)
          Constructs a new immutable map of the three specified mappings.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.newMutableMap()
          Constructs a new empty mutable map of the default expected size.
 IntIntMap IntIntMapFactory.newMutableMap(Consumer<IntIntConsumer> entriesSupplier)
          Constructs a new mutable map filled with mappings consumed by the callback within the given closure.
 IntIntMap IntIntMapFactory.newMutableMap(Consumer<IntIntConsumer> entriesSupplier, int expectedSize)
          Constructs a new mutable map filled with mappings consumed by the callback within the given closure.
 IntIntMap IntIntMapFactory.newMutableMap(int expectedSize)
          Constructs a new empty mutable map of the given expected size.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.newMutableMap(Map<Integer,Integer> map)
          Constructs a new mutable map with the same mappings as the specified map.
 IntIntMap IntIntMapFactory.newMutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2)
          Constructs a new mutable map which merge the mappings of the specified maps.
 IntIntMap IntIntMapFactory.newMutableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.newMutableMapOf(int k1, int v1)
          Constructs a new mutable map of the single specified mapping.
 IntIntMap IntIntMapFactory.newMutableMapOf(int k1, int v1, int k2, int v2)
          Constructs a new mutable map of the two specified mappings.
 IntIntMap IntIntMapFactory.newMutableMapOf(int k1, int v1, int k2, int v2, int k3, int v3)
          Constructs a new mutable map of the three specified mappings.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.newUpdatableMap()
          Constructs a new empty updatable map of the default expected size.
 IntIntMap IntIntMapFactory.newUpdatableMap(Consumer<IntIntConsumer> entriesSupplier)
          Constructs a new updatable map filled with mappings consumed by the callback within the given closure.
 IntIntMap IntIntMapFactory.newUpdatableMap(Consumer<IntIntConsumer> entriesSupplier, int expectedSize)
          Constructs a new updatable map filled with mappings consumed by the callback within the given closure.
 IntIntMap IntIntMapFactory.newUpdatableMap(int expectedSize)
          Constructs a new empty updatable map of the given expected size.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.newUpdatableMap(Map<Integer,Integer> map)
          Constructs a new updatable map with the same mappings as the specified map.
 IntIntMap IntIntMapFactory.newUpdatableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2)
          Constructs a new updatable map which merge the mappings of the specified maps.
 IntIntMap IntIntMapFactory.newUpdatableMap(Map<Integer,Integer> map1, Map<Integer,Integer> map2, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.newUpdatableMapOf(int k1, int v1)
          Constructs a new updatable map of the single specified mapping.
 IntIntMap IntIntMapFactory.newUpdatableMapOf(int k1, int v1, int k2, int v2)
          Constructs a new updatable map of the two specified mappings.
 IntIntMap IntIntMapFactory.newUpdatableMapOf(int k1, int v1, int k2, int v2, int k3, int v3)
          Constructs a new updatable map of the three specified mappings.
 IntIntMap IntIntMapFactory.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.
 IntIntMap IntIntMapFactory.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.
 

Uses of IntIntMap in com.koloboke.collect.map.hash
 

Subinterfaces of IntIntMap in com.koloboke.collect.map.hash
 interface HashIntIntMap
          An interface for IntIntMaps, based on hash tables.