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

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

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

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

Subinterfaces of ByteFloatMap in com.koloboke.collect.map.hash
 interface HashByteFloatMap
          An interface for ByteFloatMaps, based on hash tables.