Uses of Interface
org.eclipse.collections.api.tuple.primitive.LongIntPair
-
Packages that use LongIntPair Package Description org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.tuple.primitive -
-
Uses of LongIntPair in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return types with arguments of type LongIntPair Modifier and Type Method Description ImmutableList<LongIntPair>ImmutableLongBag. bottomOccurrences(int count)Returns thecountleast frequently occurring items.ListIterable<LongIntPair>LongBag. bottomOccurrences(int count)Returns thecountleast frequently occurring items.MutableList<LongIntPair>MutableLongBag. bottomOccurrences(int count)Returns thecountleast frequently occurring items.ImmutableList<LongIntPair>ImmutableLongBag. topOccurrences(int count)Returns thecountmost frequently occurring items.ListIterable<LongIntPair>LongBag. topOccurrences(int count)Returns thecountmost frequently occurring items.MutableList<LongIntPair>MutableLongBag. topOccurrences(int count)Returns thecountmost frequently occurring items. -
Uses of LongIntPair in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return types with arguments of type LongIntPair Modifier and Type Method Description RichIterable<LongIntPair>LongIntMap. keyValuesView()Returns a view of the key/value pairs in this map.Methods in org.eclipse.collections.api.map.primitive with parameters of type LongIntPair Modifier and Type Method Description default voidMutableLongIntMap. putPair(LongIntPair keyValuePair)This method allows MutableLongIntMap the ability to add an element in the form of LongIntPair.Method parameters in org.eclipse.collections.api.map.primitive with type arguments of type LongIntPair Modifier and Type Method Description default MutableLongIntMapMutableLongIntMap. withAllKeyValues(java.lang.Iterable<LongIntPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map. -
Uses of LongIntPair in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive that return types with arguments of type LongIntPair Modifier and Type Method Description ImmutableList<LongIntPair>ImmutableLongEmptyBag. bottomOccurrences(int count)ImmutableList<LongIntPair>ImmutableLongHashBag. bottomOccurrences(int count)ImmutableList<LongIntPair>ImmutableLongSingletonBag. bottomOccurrences(int count)ImmutableList<LongIntPair>ImmutableLongEmptyBag. topOccurrences(int count)ImmutableList<LongIntPair>ImmutableLongHashBag. topOccurrences(int count)ImmutableList<LongIntPair>ImmutableLongSingletonBag. topOccurrences(int count) -
Uses of LongIntPair in org.eclipse.collections.impl.bag.mutable.primitive
Methods in org.eclipse.collections.impl.bag.mutable.primitive that return types with arguments of type LongIntPair Modifier and Type Method Description MutableList<LongIntPair>LongHashBag. bottomOccurrences(int count)MutableList<LongIntPair>SynchronizedLongBag. bottomOccurrences(int count)MutableList<LongIntPair>UnmodifiableLongBag. bottomOccurrences(int count)protected MutableList<LongIntPair>LongHashBag. occurrencesSortingBy(int n, IntFunction<LongIntPair> function, MutableList<LongIntPair> returnWhenEmpty)protected MutableList<LongIntPair>LongHashBag. toListWithOccurrences()MutableList<LongIntPair>LongHashBag. topOccurrences(int count)MutableList<LongIntPair>SynchronizedLongBag. topOccurrences(int count)MutableList<LongIntPair>UnmodifiableLongBag. topOccurrences(int count)Method parameters in org.eclipse.collections.impl.bag.mutable.primitive with type arguments of type LongIntPair Modifier and Type Method Description protected MutableList<LongIntPair>LongHashBag. occurrencesSortingBy(int n, IntFunction<LongIntPair> function, MutableList<LongIntPair> returnWhenEmpty)protected MutableList<LongIntPair>LongHashBag. occurrencesSortingBy(int n, IntFunction<LongIntPair> function, MutableList<LongIntPair> returnWhenEmpty) -
Uses of LongIntPair in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive that return types with arguments of type LongIntPair Modifier and Type Method Description RichIterable<LongIntPair>ImmutableLongIntEmptyMap. keyValuesView()RichIterable<LongIntPair>ImmutableLongIntHashMap. keyValuesView()RichIterable<LongIntPair>ImmutableLongIntSingletonMap. keyValuesView() -
Uses of LongIntPair in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive that return LongIntPair Modifier and Type Method Description LongIntPairLongIntHashMap.KeyValuesView.InternalKeyValuesIterator. next()Methods in org.eclipse.collections.impl.map.mutable.primitive that return types with arguments of type LongIntPair Modifier and Type Method Description java.util.Iterator<LongIntPair>LongIntHashMap.KeyValuesView. iterator()RichIterable<LongIntPair>LongIntHashMap. keyValuesView()RichIterable<LongIntPair>SynchronizedLongIntMap. keyValuesView()RichIterable<LongIntPair>UnmodifiableLongIntMap. keyValuesView()Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type LongIntPair Modifier and Type Method Description voidSynchronizedLongIntMap. putPair(LongIntPair keyValuePair)voidUnmodifiableLongIntMap. putPair(LongIntPair keyValuePair)Method parameters in org.eclipse.collections.impl.map.mutable.primitive with type arguments of type LongIntPair Modifier and Type Method Description voidLongIntHashMap.KeyValuesView. each(Procedure<? super LongIntPair> procedure)<P> voidLongIntHashMap.KeyValuesView. forEachWith(Procedure2<? super LongIntPair,? super P> procedure, P parameter)voidLongIntHashMap.KeyValuesView. forEachWithIndex(ObjectIntProcedure<? super LongIntPair> objectIntProcedure) -
Uses of LongIntPair in org.eclipse.collections.impl.tuple.primitive
Classes in org.eclipse.collections.impl.tuple.primitive that implement LongIntPair Modifier and Type Class Description classLongIntPairImplThis file was automatically generated from template file primitivePrimitivePairImpl.stgMethods in org.eclipse.collections.impl.tuple.primitive that return LongIntPair Modifier and Type Method Description static LongIntPairPrimitiveTuples. pair(long one, int two)Methods in org.eclipse.collections.impl.tuple.primitive with parameters of type LongIntPair Modifier and Type Method Description intLongIntPairImpl. compareTo(LongIntPair that)
-