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

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

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

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

Subinterfaces of LongCharMap in com.koloboke.collect.map.hash
 interface HashLongCharMap
          An interface for LongCharMaps, based on hash tables.