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

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

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

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

Subinterfaces of CharByteMap in com.koloboke.collect.map.hash
 interface HashCharByteMap
          An interface for CharByteMaps, based on hash tables.