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

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

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

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

Subinterfaces of ByteLongMap in com.koloboke.collect.map.hash
 interface HashByteLongMap
          An interface for ByteLongMaps, based on hash tables.