Uses of Interface
com.carrotsearch.hppc.IntContainer
-
Packages that use IntContainer Package Description com.carrotsearch.hppc org.elasticsearch.common.collect -
-
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).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 classIntArrayListAn array-backed list of ints.classIntHashSetA hash set ofints, implemented using using open addressing with linear probing for collision resolution.classIntObjectHashMap.KeysContainerA view of the keys inside this hash map.Methods in com.carrotsearch.hppc that return IntContainer Modifier and Type Method Description 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.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.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.Constructors in com.carrotsearch.hppc with parameters of type IntContainer Constructor Description 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. -
Uses of IntContainer in org.elasticsearch.common.collect
Methods in org.elasticsearch.common.collect with parameters of type IntContainer Modifier and Type Method Description intImmutableOpenIntMap.Builder. removeAll(IntContainer container)
-