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).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 classLongArrayListAn array-backed list of longs.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.classLongObjectHashMap.KeysContainerA view of the keys inside this hash map.Methods in com.carrotsearch.hppc that return LongContainer Modifier and Type Method Description LongContainerObjectLongAssociativeContainer. 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.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.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.Constructors in com.carrotsearch.hppc with parameters of type LongContainer Constructor Description 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.
-