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

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

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

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

Subinterfaces of CharLongMap in com.koloboke.collect.map.hash
 interface HashCharLongMap
          An interface for CharLongMaps, based on hash tables.