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

Packages that use IntLongMap
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 IntLongMap in com.koloboke.collect.map
 

Methods in com.koloboke.collect.map that return IntLongMap
 IntLongMap IntLongMapFactory.newImmutableMap(Consumer<IntLongConsumer> entriesSupplier)
          Constructs a new immutable map filled with mappings consumed by the callback within the given closure.
 IntLongMap IntLongMapFactory.newImmutableMap(Consumer<IntLongConsumer> entriesSupplier, int expectedSize)
          Constructs a new immutable map filled with mappings consumed by the callback within the given closure.
 IntLongMap IntLongMapFactory.newImmutableMap(int[] keys, long[] 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.
 IntLongMap IntLongMapFactory.newImmutableMap(int[] keys, long[] 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.
 IntLongMap IntLongMapFactory.newImmutableMap(Integer[] keys, Long[] 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.
 IntLongMap IntLongMapFactory.newImmutableMap(Integer[] keys, Long[] 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.
 IntLongMap IntLongMapFactory.newImmutableMap(Iterable<Integer> keys, Iterable<Long> 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.
 IntLongMap IntLongMapFactory.newImmutableMap(Iterable<Integer> keys, Iterable<Long> 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.
 IntLongMap IntLongMapFactory.newImmutableMap(Map<Integer,Long> map)
          Constructs a new immutable map with the same mappings as the specified map.
 IntLongMap IntLongMapFactory.newImmutableMap(Map<Integer,Long> map1, Map<Integer,Long> map2)
          Constructs a new immutable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newImmutableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newImmutableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3)
          Constructs a new immutable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newImmutableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newImmutableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3, Map<Integer,Long> map4)
          Constructs a new immutable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newImmutableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3, Map<Integer,Long> map4, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newImmutableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3, Map<Integer,Long> map4, Map<Integer,Long> map5)
          Constructs a new immutable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newImmutableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3, Map<Integer,Long> map4, Map<Integer,Long> map5, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newImmutableMapOf(int k1, long v1)
          Constructs a new immutable map of the single specified mapping.
 IntLongMap IntLongMapFactory.newImmutableMapOf(int k1, long v1, int k2, long v2)
          Constructs a new immutable map of the two specified mappings.
 IntLongMap IntLongMapFactory.newImmutableMapOf(int k1, long v1, int k2, long v2, int k3, long v3)
          Constructs a new immutable map of the three specified mappings.
 IntLongMap IntLongMapFactory.newImmutableMapOf(int k1, long v1, int k2, long v2, int k3, long v3, int k4, long v4)
          Constructs a new immutable map of the four specified mappings.
 IntLongMap IntLongMapFactory.newImmutableMapOf(int k1, long v1, int k2, long v2, int k3, long v3, int k4, long v4, int k5, long v5)
          Constructs a new immutable map of the five specified mappings.
 IntLongMap IntLongMapFactory.newMutableMap()
          Constructs a new empty mutable map of the default expected size.
 IntLongMap IntLongMapFactory.newMutableMap(Consumer<IntLongConsumer> entriesSupplier)
          Constructs a new mutable map filled with mappings consumed by the callback within the given closure.
 IntLongMap IntLongMapFactory.newMutableMap(Consumer<IntLongConsumer> entriesSupplier, int expectedSize)
          Constructs a new mutable map filled with mappings consumed by the callback within the given closure.
 IntLongMap IntLongMapFactory.newMutableMap(int expectedSize)
          Constructs a new empty mutable map of the given expected size.
 IntLongMap IntLongMapFactory.newMutableMap(int[] keys, long[] 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.
 IntLongMap IntLongMapFactory.newMutableMap(int[] keys, long[] 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.
 IntLongMap IntLongMapFactory.newMutableMap(Integer[] keys, Long[] 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.
 IntLongMap IntLongMapFactory.newMutableMap(Integer[] keys, Long[] 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.
 IntLongMap IntLongMapFactory.newMutableMap(Iterable<Integer> keys, Iterable<Long> 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.
 IntLongMap IntLongMapFactory.newMutableMap(Iterable<Integer> keys, Iterable<Long> 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.
 IntLongMap IntLongMapFactory.newMutableMap(Map<Integer,Long> map)
          Constructs a new mutable map with the same mappings as the specified map.
 IntLongMap IntLongMapFactory.newMutableMap(Map<Integer,Long> map1, Map<Integer,Long> map2)
          Constructs a new mutable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newMutableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newMutableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3)
          Constructs a new mutable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newMutableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newMutableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3, Map<Integer,Long> map4)
          Constructs a new mutable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newMutableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3, Map<Integer,Long> map4, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newMutableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3, Map<Integer,Long> map4, Map<Integer,Long> map5)
          Constructs a new mutable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newMutableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3, Map<Integer,Long> map4, Map<Integer,Long> map5, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newMutableMapOf(int k1, long v1)
          Constructs a new mutable map of the single specified mapping.
 IntLongMap IntLongMapFactory.newMutableMapOf(int k1, long v1, int k2, long v2)
          Constructs a new mutable map of the two specified mappings.
 IntLongMap IntLongMapFactory.newMutableMapOf(int k1, long v1, int k2, long v2, int k3, long v3)
          Constructs a new mutable map of the three specified mappings.
 IntLongMap IntLongMapFactory.newMutableMapOf(int k1, long v1, int k2, long v2, int k3, long v3, int k4, long v4)
          Constructs a new mutable map of the four specified mappings.
 IntLongMap IntLongMapFactory.newMutableMapOf(int k1, long v1, int k2, long v2, int k3, long v3, int k4, long v4, int k5, long v5)
          Constructs a new mutable map of the five specified mappings.
 IntLongMap IntLongMapFactory.newUpdatableMap()
          Constructs a new empty updatable map of the default expected size.
 IntLongMap IntLongMapFactory.newUpdatableMap(Consumer<IntLongConsumer> entriesSupplier)
          Constructs a new updatable map filled with mappings consumed by the callback within the given closure.
 IntLongMap IntLongMapFactory.newUpdatableMap(Consumer<IntLongConsumer> entriesSupplier, int expectedSize)
          Constructs a new updatable map filled with mappings consumed by the callback within the given closure.
 IntLongMap IntLongMapFactory.newUpdatableMap(int expectedSize)
          Constructs a new empty updatable map of the given expected size.
 IntLongMap IntLongMapFactory.newUpdatableMap(int[] keys, long[] 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.
 IntLongMap IntLongMapFactory.newUpdatableMap(int[] keys, long[] 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.
 IntLongMap IntLongMapFactory.newUpdatableMap(Integer[] keys, Long[] 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.
 IntLongMap IntLongMapFactory.newUpdatableMap(Integer[] keys, Long[] 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.
 IntLongMap IntLongMapFactory.newUpdatableMap(Iterable<Integer> keys, Iterable<Long> 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.
 IntLongMap IntLongMapFactory.newUpdatableMap(Iterable<Integer> keys, Iterable<Long> 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.
 IntLongMap IntLongMapFactory.newUpdatableMap(Map<Integer,Long> map)
          Constructs a new updatable map with the same mappings as the specified map.
 IntLongMap IntLongMapFactory.newUpdatableMap(Map<Integer,Long> map1, Map<Integer,Long> map2)
          Constructs a new updatable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newUpdatableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newUpdatableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3)
          Constructs a new updatable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newUpdatableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newUpdatableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3, Map<Integer,Long> map4)
          Constructs a new updatable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newUpdatableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3, Map<Integer,Long> map4, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newUpdatableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3, Map<Integer,Long> map4, Map<Integer,Long> map5)
          Constructs a new updatable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newUpdatableMap(Map<Integer,Long> map1, Map<Integer,Long> map2, Map<Integer,Long> map3, Map<Integer,Long> map4, Map<Integer,Long> map5, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
 IntLongMap IntLongMapFactory.newUpdatableMapOf(int k1, long v1)
          Constructs a new updatable map of the single specified mapping.
 IntLongMap IntLongMapFactory.newUpdatableMapOf(int k1, long v1, int k2, long v2)
          Constructs a new updatable map of the two specified mappings.
 IntLongMap IntLongMapFactory.newUpdatableMapOf(int k1, long v1, int k2, long v2, int k3, long v3)
          Constructs a new updatable map of the three specified mappings.
 IntLongMap IntLongMapFactory.newUpdatableMapOf(int k1, long v1, int k2, long v2, int k3, long v3, int k4, long v4)
          Constructs a new updatable map of the four specified mappings.
 IntLongMap IntLongMapFactory.newUpdatableMapOf(int k1, long v1, int k2, long v2, int k3, long v3, int k4, long v4, int k5, long v5)
          Constructs a new updatable map of the five specified mappings.
 

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

Subinterfaces of IntLongMap in com.koloboke.collect.map.hash
 interface HashIntLongMap
          An interface for IntLongMaps, based on hash tables.