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

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

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

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

Subinterfaces of IntByteMap in com.koloboke.collect.map.hash
 interface HashIntByteMap
          An interface for IntByteMaps, based on hash tables.