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

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

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

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

Subinterfaces of LongIntMap in com.koloboke.collect.map.hash
 interface HashLongIntMap
          An interface for LongIntMaps, based on hash tables.