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

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

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

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

Subinterfaces of ByteIntMap in com.koloboke.collect.map.hash
 interface HashByteIntMap
          An interface for ByteIntMaps, based on hash tables.