Uses of Interface
com.carrotsearch.hppc.IntContainer
-
Packages that use IntContainer Package Description com.carrotsearch.hppc -
-
Uses of IntContainer in com.carrotsearch.hppc
Subinterfaces of IntContainer in com.carrotsearch.hppc Modifier and Type Interface Description interfaceIntCollectionA collection allows basic, efficient operations on sets of elements (difference and intersection).interfaceIntDequeA linear collection that supports element insertion and removal at both ends.interfaceIntIndexedContainerAn indexed container provides random access to elements based on anindex.interfaceIntLookupContainerMarker 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).interfaceIntSetA set ofints.Classes in com.carrotsearch.hppc that implement IntContainer Modifier and Type Class Description (package private) classAbstractIntCollectionCommon superclass for collections.private classByteIntHashMap.ValuesContainerA view over the set of values of this map.private classCharIntHashMap.ValuesContainerA view over the set of values of this map.private classDoubleIntHashMap.ValuesContainerA view over the set of values of this map.private classFloatIntHashMap.ValuesContainerA view over the set of values of this map.classIntArrayDequeAn array-backedIntDeque.classIntArrayListAn array-backed list of ints.classIntByteHashMap.KeysContainerA view of the keys inside this hash map.classIntCharHashMap.KeysContainerA view of the keys inside this hash map.classIntDoubleHashMap.KeysContainerA view of the keys inside this hash map.classIntFloatHashMap.KeysContainerA view of the keys inside this hash map.classIntHashSetA hash set ofints, implemented using using open addressing with linear probing for collision resolution.classIntIntHashMap.KeysContainerA view of the keys inside this hash map.private classIntIntHashMap.ValuesContainerA view over the set of values of this map.classIntLongHashMap.KeysContainerA view of the keys inside this hash map.classIntObjectHashMap.KeysContainerA view of the keys inside this hash map.classIntScatterSetSame asIntHashSetbut does not implement per-instance key mixing strategy and uses a simpler (faster) bit distribution function.classIntShortHashMap.KeysContainerA view of the keys inside this hash map.classIntStackA subclass ofIntArrayListadding stack-related utility methods.private classLongIntHashMap.ValuesContainerA view over the set of values of this map.private classObjectIntHashMap.ValuesContainerA view over the set of values of this map.private classShortIntHashMap.ValuesContainerA view over the set of values of this map.Methods in com.carrotsearch.hppc that return IntContainer Modifier and Type Method Description IntContainerByteIntAssociativeContainer. values()Returns a container view of all values present in this container.IntContainerCharIntAssociativeContainer. values()Returns a container view of all values present in this container.IntContainerDoubleIntAssociativeContainer. values()Returns a container view of all values present in this container.IntContainerFloatIntAssociativeContainer. values()Returns a container view of all values present in this container.IntContainerIntIntAssociativeContainer. values()Returns a container view of all values present in this container.IntContainerLongIntAssociativeContainer. values()Returns a container view of all values present in this container.IntContainerObjectIntAssociativeContainer. values()Returns a container view of all values present in this container.IntContainerShortIntAssociativeContainer. values()Returns a container view of all values present in this container.Methods in com.carrotsearch.hppc with parameters of type IntContainer Modifier and Type Method Description intIntArrayList. addAll(IntContainer container)Adds all elements from another container.intIntHashSet. addAll(IntContainer container)Adds all elements from the givenIntContainerto this set.intIntArrayDeque. addFirst(IntContainer container)Inserts all elements from the given container to the front of this deque.intIntArrayDeque. addLast(IntContainer container)Inserts all elements from the given container to the end of this deque.intIntStack. pushAll(IntContainer container)Pushes all elements from another container to the top of the stack.intIntByteAssociativeContainer. removeAll(IntContainer container)Removes all keys (and associated values) present in a given container.intIntByteHashMap. removeAll(IntContainer other)Removes all keys (and associated values) present in a given container.intIntCharAssociativeContainer. removeAll(IntContainer container)Removes all keys (and associated values) present in a given container.intIntCharHashMap. removeAll(IntContainer other)Removes all keys (and associated values) present in a given container.intIntDoubleAssociativeContainer. removeAll(IntContainer container)Removes all keys (and associated values) present in a given container.intIntDoubleHashMap. removeAll(IntContainer other)Removes all keys (and associated values) present in a given container.intIntFloatAssociativeContainer. removeAll(IntContainer container)Removes all keys (and associated values) present in a given container.intIntFloatHashMap. removeAll(IntContainer other)Removes all keys (and associated values) present in a given container.intIntIntAssociativeContainer. removeAll(IntContainer container)Removes all keys (and associated values) present in a given container.intIntIntHashMap. removeAll(IntContainer other)Removes all keys (and associated values) present in a given container.intIntLongAssociativeContainer. removeAll(IntContainer container)Removes all keys (and associated values) present in a given container.intIntLongHashMap. removeAll(IntContainer other)Removes all keys (and associated values) present in a given container.intIntObjectAssociativeContainer. removeAll(IntContainer container)Removes all keys (and associated values) present in a given container.intIntObjectHashMap. removeAll(IntContainer other)Removes all keys (and associated values) present in a given container.intIntShortAssociativeContainer. removeAll(IntContainer container)Removes all keys (and associated values) present in a given container.intIntShortHashMap. removeAll(IntContainer other)Removes all keys (and associated values) present in a given container.Constructors in com.carrotsearch.hppc with parameters of type IntContainer Constructor Description IntArrayDeque(IntContainer container)Creates a new deque from elements of another container, appending elements at the end of the deque in the iteration order.IntArrayList(IntContainer container)Creates a new list from the elements of another container in its iteration order.IntHashSet(IntContainer container)New instance copying elements from anotherIntContainer.IntStack(IntContainer container)Create a stack by pushing all elements of another container to it.
-