Uses of Interface
com.carrotsearch.hppc.LongContainer
-
Packages that use LongContainer Package Description com.carrotsearch.hppc -
-
Uses of LongContainer in com.carrotsearch.hppc
Subinterfaces of LongContainer in com.carrotsearch.hppc Modifier and Type Interface Description interfaceLongCollectionA collection allows basic, efficient operations on sets of elements (difference and intersection).interfaceLongDequeA linear collection that supports element insertion and removal at both ends.interfaceLongIndexedContainerAn indexed container provides random access to elements based on anindex.interfaceLongLookupContainerMarker 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).interfaceLongSetA set oflongs.Classes in com.carrotsearch.hppc that implement LongContainer Modifier and Type Class Description (package private) classAbstractLongCollectionCommon superclass for collections.private classByteLongHashMap.ValuesContainerA view over the set of values of this map.private classCharLongHashMap.ValuesContainerA view over the set of values of this map.private classDoubleLongHashMap.ValuesContainerA view over the set of values of this map.private classFloatLongHashMap.ValuesContainerA view over the set of values of this map.private classIntLongHashMap.ValuesContainerA view over the set of values of this map.classLongArrayDequeAn array-backedLongDeque.classLongArrayListAn array-backed list of longs.classLongByteHashMap.KeysContainerA view of the keys inside this hash map.classLongCharHashMap.KeysContainerA view of the keys inside this hash map.classLongDoubleHashMap.KeysContainerA view of the keys inside this hash map.classLongFloatHashMap.KeysContainerA view of the keys inside this hash map.classLongHashSetA hash set oflongs, implemented using using open addressing with linear probing for collision resolution.classLongIntHashMap.KeysContainerA view of the keys inside this hash map.classLongLongHashMap.KeysContainerA view of the keys inside this hash map.private classLongLongHashMap.ValuesContainerA view over the set of values of this map.classLongObjectHashMap.KeysContainerA view of the keys inside this hash map.classLongScatterSetSame asLongHashSetbut does not implement per-instance key mixing strategy and uses a simpler (faster) bit distribution function.classLongShortHashMap.KeysContainerA view of the keys inside this hash map.classLongStackA subclass ofLongArrayListadding stack-related utility methods.private classObjectLongHashMap.ValuesContainerA view over the set of values of this map.private classShortLongHashMap.ValuesContainerA view over the set of values of this map.Methods in com.carrotsearch.hppc that return LongContainer Modifier and Type Method Description LongContainerByteLongAssociativeContainer. values()Returns a container view of all values present in this container.LongContainerCharLongAssociativeContainer. values()Returns a container view of all values present in this container.LongContainerDoubleLongAssociativeContainer. values()Returns a container view of all values present in this container.LongContainerFloatLongAssociativeContainer. values()Returns a container view of all values present in this container.LongContainerIntLongAssociativeContainer. values()Returns a container view of all values present in this container.LongContainerLongLongAssociativeContainer. values()Returns a container view of all values present in this container.LongContainerObjectLongAssociativeContainer. values()Returns a container view of all values present in this container.LongContainerShortLongAssociativeContainer. values()Returns a container view of all values present in this container.Methods in com.carrotsearch.hppc with parameters of type LongContainer Modifier and Type Method Description intLongArrayList. addAll(LongContainer container)Adds all elements from another container.intLongHashSet. addAll(LongContainer container)Adds all elements from the givenLongContainerto this set.intLongArrayDeque. addFirst(LongContainer container)Inserts all elements from the given container to the front of this deque.intLongArrayDeque. addLast(LongContainer container)Inserts all elements from the given container to the end of this deque.intLongStack. pushAll(LongContainer container)Pushes all elements from another container to the top of the stack.intLongByteAssociativeContainer. removeAll(LongContainer container)Removes all keys (and associated values) present in a given container.intLongByteHashMap. removeAll(LongContainer other)Removes all keys (and associated values) present in a given container.intLongCharAssociativeContainer. removeAll(LongContainer container)Removes all keys (and associated values) present in a given container.intLongCharHashMap. removeAll(LongContainer other)Removes all keys (and associated values) present in a given container.intLongDoubleAssociativeContainer. removeAll(LongContainer container)Removes all keys (and associated values) present in a given container.intLongDoubleHashMap. removeAll(LongContainer other)Removes all keys (and associated values) present in a given container.intLongFloatAssociativeContainer. removeAll(LongContainer container)Removes all keys (and associated values) present in a given container.intLongFloatHashMap. removeAll(LongContainer other)Removes all keys (and associated values) present in a given container.intLongIntAssociativeContainer. removeAll(LongContainer container)Removes all keys (and associated values) present in a given container.intLongIntHashMap. removeAll(LongContainer other)Removes all keys (and associated values) present in a given container.intLongLongAssociativeContainer. removeAll(LongContainer container)Removes all keys (and associated values) present in a given container.intLongLongHashMap. removeAll(LongContainer other)Removes all keys (and associated values) present in a given container.intLongObjectAssociativeContainer. removeAll(LongContainer container)Removes all keys (and associated values) present in a given container.intLongObjectHashMap. removeAll(LongContainer other)Removes all keys (and associated values) present in a given container.intLongShortAssociativeContainer. removeAll(LongContainer container)Removes all keys (and associated values) present in a given container.intLongShortHashMap. removeAll(LongContainer other)Removes all keys (and associated values) present in a given container.Constructors in com.carrotsearch.hppc with parameters of type LongContainer Constructor Description LongArrayDeque(LongContainer container)Creates a new deque from elements of another container, appending elements at the end of the deque in the iteration order.LongArrayList(LongContainer container)Creates a new list from the elements of another container in its iteration order.LongHashSet(LongContainer container)New instance copying elements from anotherLongContainer.LongStack(LongContainer container)Create a stack by pushing all elements of another container to it.
-