Uses of Interface
com.carrotsearch.hppc.CharContainer
Packages that use CharContainer
-
Uses of CharContainer in com.carrotsearch.hppc
Subinterfaces of CharContainer in com.carrotsearch.hppcModifier and TypeInterfaceDescriptioninterfaceA collection allows basic, efficient operations on sets of elements (difference and intersection).interfaceA linear collection that supports element insertion and removal at both ends.interfaceAn indexed container provides random access to elements based on anindex.interfaceMarker interface for containers that can check if they contain a given object in at least timeO(log n)and ideally in amortized constant timeO(1).interfaceA set ofchars.Classes in com.carrotsearch.hppc that implement CharContainerModifier and TypeClassDescription(package private) classCommon superclass for collections.private final classA view over the set of values of this map.classAn array-backedCharDeque.classAn array-backed list of chars.final classA view of the keys inside this hash map.final classA view of the keys inside this hash map.private final classA view over the set of values of this map.final classA view of the keys inside this hash map.final classA view of the keys inside this hash map.classA hash set ofchars, implemented using using open addressing with linear probing for collision resolution.final classA view of the keys inside this hash map.final classA view of the keys inside this hash map.final classA view of the keys inside this hash map.classSame asCharHashSetbut does not implement per-instance key mixing strategy and uses a simpler (faster) bit distribution function.final classA view of the keys inside this hash map.classA subclass ofCharArrayListadding stack-related utility methods.private final classA view over the set of values of this map.private final classA view over the set of values of this map.private final classA view over the set of values of this map.private final classA view over the set of values of this map.private final classA view over the set of values of this map.private final classA view over the set of values of this map.Methods in com.carrotsearch.hppc that return CharContainerModifier and TypeMethodDescriptionByteCharAssociativeContainer.values()Returns a container view of all values present in this container.CharCharAssociativeContainer.values()Returns a container view of all values present in this container.DoubleCharAssociativeContainer.values()Returns a container view of all values present in this container.FloatCharAssociativeContainer.values()Returns a container view of all values present in this container.IntCharAssociativeContainer.values()Returns a container view of all values present in this container.LongCharAssociativeContainer.values()Returns a container view of all values present in this container.ObjectCharAssociativeContainer.values()Returns a container view of all values present in this container.ShortCharAssociativeContainer.values()Returns a container view of all values present in this container.Methods in com.carrotsearch.hppc with parameters of type CharContainerModifier and TypeMethodDescriptionintCharArrayList.addAll(CharContainer container) Adds all elements from another container.intCharHashSet.addAll(CharContainer container) Adds all elements from the givenCharContainerto this set.intCharArrayDeque.addFirst(CharContainer container) Inserts all elements from the given container to the front of this deque.intCharArrayDeque.addLast(CharContainer container) Inserts all elements from the given container to the end of this deque.intCharStack.pushAll(CharContainer container) Pushes all elements from another container to the top of the stack.intCharByteAssociativeContainer.removeAll(CharContainer container) Removes all keys (and associated values) present in a given container.intCharByteHashMap.removeAll(CharContainer other) Removes all keys (and associated values) present in a given container.intCharCharAssociativeContainer.removeAll(CharContainer container) Removes all keys (and associated values) present in a given container.intCharCharHashMap.removeAll(CharContainer other) Removes all keys (and associated values) present in a given container.intCharDoubleAssociativeContainer.removeAll(CharContainer container) Removes all keys (and associated values) present in a given container.intCharDoubleHashMap.removeAll(CharContainer other) Removes all keys (and associated values) present in a given container.intCharFloatAssociativeContainer.removeAll(CharContainer container) Removes all keys (and associated values) present in a given container.intCharFloatHashMap.removeAll(CharContainer other) Removes all keys (and associated values) present in a given container.intCharIntAssociativeContainer.removeAll(CharContainer container) Removes all keys (and associated values) present in a given container.intCharIntHashMap.removeAll(CharContainer other) Removes all keys (and associated values) present in a given container.intCharLongAssociativeContainer.removeAll(CharContainer container) Removes all keys (and associated values) present in a given container.intCharLongHashMap.removeAll(CharContainer other) Removes all keys (and associated values) present in a given container.intCharObjectAssociativeContainer.removeAll(CharContainer container) Removes all keys (and associated values) present in a given container.intCharObjectHashMap.removeAll(CharContainer other) Removes all keys (and associated values) present in a given container.intCharShortAssociativeContainer.removeAll(CharContainer container) Removes all keys (and associated values) present in a given container.intCharShortHashMap.removeAll(CharContainer other) Removes all keys (and associated values) present in a given container.Constructors in com.carrotsearch.hppc with parameters of type CharContainerModifierConstructorDescriptionCharArrayDeque(CharContainer container) Creates a new deque from elements of another container, appending elements at the end of the deque in the iteration order.CharArrayList(CharContainer container) Creates a new list from the elements of another container in its iteration order.CharHashSet(CharContainer container) New instance copying elements from anotherCharContainer.CharStack(CharContainer container) Create a stack by pushing all elements of another container to it.