Uses of Interface
com.carrotsearch.hppc.ShortContainer
-
Packages that use ShortContainer Package Description com.carrotsearch.hppc -
-
Uses of ShortContainer in com.carrotsearch.hppc
Subinterfaces of ShortContainer in com.carrotsearch.hppc Modifier and Type Interface Description interfaceShortCollectionA collection allows basic, efficient operations on sets of elements (difference and intersection).interfaceShortDequeA linear collection that supports element insertion and removal at both ends.interfaceShortIndexedContainerAn indexed container provides random access to elements based on anindex.interfaceShortLookupContainerMarker 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).interfaceShortSetA set ofshorts.Classes in com.carrotsearch.hppc that implement ShortContainer Modifier and Type Class Description (package private) classAbstractShortCollectionCommon superclass for collections.private classByteShortHashMap.ValuesContainerA view over the set of values of this map.private classCharShortHashMap.ValuesContainerA view over the set of values of this map.private classDoubleShortHashMap.ValuesContainerA view over the set of values of this map.private classFloatShortHashMap.ValuesContainerA view over the set of values of this map.private classIntShortHashMap.ValuesContainerA view over the set of values of this map.private classLongShortHashMap.ValuesContainerA view over the set of values of this map.private classObjectShortHashMap.ValuesContainerA view over the set of values of this map.classShortArrayDequeAn array-backedShortDeque.classShortArrayListAn array-backed list of shorts.classShortByteHashMap.KeysContainerA view of the keys inside this hash map.classShortCharHashMap.KeysContainerA view of the keys inside this hash map.classShortDoubleHashMap.KeysContainerA view of the keys inside this hash map.classShortFloatHashMap.KeysContainerA view of the keys inside this hash map.classShortHashSetA hash set ofshorts, implemented using using open addressing with linear probing for collision resolution.classShortIntHashMap.KeysContainerA view of the keys inside this hash map.classShortLongHashMap.KeysContainerA view of the keys inside this hash map.classShortObjectHashMap.KeysContainerA view of the keys inside this hash map.classShortScatterSetSame asShortHashSetbut does not implement per-instance key mixing strategy and uses a simpler (faster) bit distribution function.classShortShortHashMap.KeysContainerA view of the keys inside this hash map.private classShortShortHashMap.ValuesContainerA view over the set of values of this map.classShortStackA subclass ofShortArrayListadding stack-related utility methods.Methods in com.carrotsearch.hppc that return ShortContainer Modifier and Type Method Description ShortContainerByteShortAssociativeContainer. values()Returns a container view of all values present in this container.ShortContainerCharShortAssociativeContainer. values()Returns a container view of all values present in this container.ShortContainerDoubleShortAssociativeContainer. values()Returns a container view of all values present in this container.ShortContainerFloatShortAssociativeContainer. values()Returns a container view of all values present in this container.ShortContainerIntShortAssociativeContainer. values()Returns a container view of all values present in this container.ShortContainerLongShortAssociativeContainer. values()Returns a container view of all values present in this container.ShortContainerObjectShortAssociativeContainer. values()Returns a container view of all values present in this container.ShortContainerShortShortAssociativeContainer. values()Returns a container view of all values present in this container.Methods in com.carrotsearch.hppc with parameters of type ShortContainer Modifier and Type Method Description intShortArrayList. addAll(ShortContainer container)Adds all elements from another container.intShortHashSet. addAll(ShortContainer container)Adds all elements from the givenShortContainerto this set.intShortArrayDeque. addFirst(ShortContainer container)Inserts all elements from the given container to the front of this deque.intShortArrayDeque. addLast(ShortContainer container)Inserts all elements from the given container to the end of this deque.intShortStack. pushAll(ShortContainer container)Pushes all elements from another container to the top of the stack.intShortByteAssociativeContainer. removeAll(ShortContainer container)Removes all keys (and associated values) present in a given container.intShortByteHashMap. removeAll(ShortContainer other)Removes all keys (and associated values) present in a given container.intShortCharAssociativeContainer. removeAll(ShortContainer container)Removes all keys (and associated values) present in a given container.intShortCharHashMap. removeAll(ShortContainer other)Removes all keys (and associated values) present in a given container.intShortDoubleAssociativeContainer. removeAll(ShortContainer container)Removes all keys (and associated values) present in a given container.intShortDoubleHashMap. removeAll(ShortContainer other)Removes all keys (and associated values) present in a given container.intShortFloatAssociativeContainer. removeAll(ShortContainer container)Removes all keys (and associated values) present in a given container.intShortFloatHashMap. removeAll(ShortContainer other)Removes all keys (and associated values) present in a given container.intShortIntAssociativeContainer. removeAll(ShortContainer container)Removes all keys (and associated values) present in a given container.intShortIntHashMap. removeAll(ShortContainer other)Removes all keys (and associated values) present in a given container.intShortLongAssociativeContainer. removeAll(ShortContainer container)Removes all keys (and associated values) present in a given container.intShortLongHashMap. removeAll(ShortContainer other)Removes all keys (and associated values) present in a given container.intShortObjectAssociativeContainer. removeAll(ShortContainer container)Removes all keys (and associated values) present in a given container.intShortObjectHashMap. removeAll(ShortContainer other)Removes all keys (and associated values) present in a given container.intShortShortAssociativeContainer. removeAll(ShortContainer container)Removes all keys (and associated values) present in a given container.intShortShortHashMap. removeAll(ShortContainer other)Removes all keys (and associated values) present in a given container.Constructors in com.carrotsearch.hppc with parameters of type ShortContainer Constructor Description ShortArrayDeque(ShortContainer container)Creates a new deque from elements of another container, appending elements at the end of the deque in the iteration order.ShortArrayList(ShortContainer container)Creates a new list from the elements of another container in its iteration order.ShortHashSet(ShortContainer container)New instance copying elements from anotherShortContainer.ShortStack(ShortContainer container)Create a stack by pushing all elements of another container to it.
-