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

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

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

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

Subinterfaces of ByteByteMap in com.koloboke.collect.map.hash
 interface HashByteByteMap
          An interface for ByteByteMaps, based on hash tables.