Uses of Interface
org.eclipse.collections.api.map.primitive.MutableObjectLongMap
Package | Description |
---|---|
org.eclipse.collections.api.collection | |
org.eclipse.collections.api.factory.map.primitive | |
org.eclipse.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
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.api.stack |
This package contains interfaces for stack API.
|
org.eclipse.collections.impl.bag.mutable |
This package contains implementations of the
MutableBag interface. |
org.eclipse.collections.impl.bimap.mutable |
This package contains implementations of the
MutableBiMap interface. |
org.eclipse.collections.impl.block.factory |
This package contains factory implementations for
Function , Predicate , SerializableComparator and Procedure . |
org.eclipse.collections.impl.collection.mutable |
This package contains implementations of the
MutableCollection interface. |
org.eclipse.collections.impl.collector | |
org.eclipse.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
org.eclipse.collections.impl.map |
This package contains implementations of the
MapIterable interface. |
org.eclipse.collections.impl.map.mutable |
This package contains implementations of the
MutableMap interface. |
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.map.ordered.mutable | |
org.eclipse.collections.impl.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
org.eclipse.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack interface. |
org.eclipse.collections.impl.utility.internal |
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
|
-
Uses of MutableObjectLongMap in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return MutableObjectLongMap Modifier and Type Method Description <V> MutableObjectLongMap<V>
MutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
MutableCollection. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableObjectLongMap Modifier and Type Method Description <K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. empty()
<T, K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, LongFunction<? super T> valueFunction)
Creates anMutableObjectLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. of()
Same asMutableObjectLongMapFactory.empty()
.<K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. ofAll(ObjectLongMap<? extends K> map)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. ofInitialCapacity(int capacity)
Same asMutableObjectLongMapFactory.empty()
.<K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. with()
Same asMutableObjectLongMapFactory.empty()
.<K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. withAll(ObjectLongMap<? extends K> map)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactory. withInitialCapacity(int capacity)
Same asMutableObjectLongMapFactory.empty()
. -
Uses of MutableObjectLongMap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableObjectLongMap Modifier and Type Method Description <V1> MutableObjectLongMap<V1>
MutableMapIterable. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
MutableMapIterable. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableObjectLongMap Modifier and Type Method Description MutableObjectLongMap<K>
MutableObjectLongMap. asSynchronized()
MutableObjectLongMap<K>
MutableObjectLongMap. asUnmodifiable()
MutableObjectLongMap<V>
MutableLongObjectMap. flipUniqueValues()
MutableObjectLongMap<K>
MutableObjectLongMap. reject(ObjectLongPredicate<? super K> predicate)
MutableObjectLongMap<K>
MutableObjectLongMap. select(ObjectLongPredicate<? super K> predicate)
<VV> MutableObjectLongMap<VV>
MutablePrimitiveObjectMap. sumByInt(Function<? super V,? extends VV> groupBy, IntFunction<? super V> function)
<VV> MutableObjectLongMap<VV>
MutablePrimitiveObjectMap. sumByLong(Function<? super V,? extends VV> groupBy, LongFunction<? super V> function)
default MutableObjectLongMap<K>
MutableObjectLongMap. tap(LongProcedure procedure)
default MutableObjectLongMap<K>
MutableObjectLongMap. withAllKeyValues(Iterable<ObjectLongPair<K>> keyValuePairs)
MutableObjectLongMap<K>
MutableObjectLongMap. withKeyValue(K key, long value)
Associates a value with the specified key.MutableObjectLongMap<K>
MutableObjectLongMap. withoutAllKeys(Iterable<? extends K> keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableObjectLongMap<K>
MutableObjectLongMap. withoutKey(K key)
Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableObjectLongMap in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return MutableObjectLongMap Modifier and Type Method Description <V> MutableObjectLongMap<V>
MutableStack. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
MutableStack. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable that return MutableObjectLongMap Modifier and Type Method Description <V> MutableObjectLongMap<V>
AbstractMutableBagIterable. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractMutableBagIterable. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return MutableObjectLongMap Modifier and Type Method Description <V1> MutableObjectLongMap<V1>
UnmodifiableBiMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableBiMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.block.factory
Methods in org.eclipse.collections.impl.block.factory that return types with arguments of type MutableObjectLongMap Modifier and Type Method Description static <T, V> Function2<MutableObjectLongMap<V>,T,MutableObjectLongMap<V>>
PrimitiveFunctions. sumByIntFunction(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
static <T, V> Function2<MutableObjectLongMap<V>,T,MutableObjectLongMap<V>>
PrimitiveFunctions. sumByIntFunction(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
static <T, V> Function2<MutableObjectLongMap<V>,T,MutableObjectLongMap<V>>
PrimitiveFunctions. sumByLongFunction(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
static <T, V> Function2<MutableObjectLongMap<V>,T,MutableObjectLongMap<V>>
PrimitiveFunctions. sumByLongFunction(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable that return MutableObjectLongMap Modifier and Type Method Description <V> MutableObjectLongMap<V>
AbstractCollectionAdapter. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractMultiReaderMutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractMutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractSynchronizedMutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractUnmodifiableMutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractCollectionAdapter. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractMultiReaderMutableCollection. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractMutableCollection. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractSynchronizedMutableCollection. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractUnmodifiableMutableCollection. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type MutableObjectLongMap Modifier and Type Method Description static <T, V> Collector<T,?,MutableObjectLongMap<V>>
Collectors2. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
Groups and sums the values using the two specified functions.static <T, V> Collector<T,?,MutableObjectLongMap<V>>
Collectors2. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
Groups and sums the values using the two specified functions. -
Uses of MutableObjectLongMap in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableObjectLongMap Modifier and Type Method Description <V> MutableObjectLongMap<V>
FastList. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
FastList. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.map
Methods in org.eclipse.collections.impl.map that return MutableObjectLongMap Modifier and Type Method Description <V1> MutableObjectLongMap<V1>
AbstractSynchronizedMapIterable. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
AbstractSynchronizedMapIterable. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable that return MutableObjectLongMap Modifier and Type Method Description <V1> MutableObjectLongMap<V1>
AbstractMutableMapIterable. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableMutableMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
AbstractMutableMapIterable. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableMutableMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableObjectLongMap Modifier and Type Class Description class
ObjectLongHashMap<K>
This file was automatically generated from template file objectPrimitiveHashMap.stg.class
ObjectLongHashMapWithHashingStrategy<K>
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.class
SynchronizedObjectLongMap<K>
A synchronized view of aMutableObjectLongMap
.class
UnmodifiableObjectLongMap<K>
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableObjectLongMap Modifier and Type Method Description MutableObjectLongMap<K>
ObjectLongHashMap. asSynchronized()
MutableObjectLongMap<K>
ObjectLongHashMapWithHashingStrategy. asSynchronized()
MutableObjectLongMap<K>
SynchronizedObjectLongMap. asSynchronized()
MutableObjectLongMap<K>
UnmodifiableObjectLongMap. asSynchronized()
MutableObjectLongMap<K>
ObjectLongHashMap. asUnmodifiable()
MutableObjectLongMap<K>
ObjectLongHashMapWithHashingStrategy. asUnmodifiable()
MutableObjectLongMap<K>
SynchronizedObjectLongMap. asUnmodifiable()
MutableObjectLongMap<K>
UnmodifiableObjectLongMap. asUnmodifiable()
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. empty()
MutableObjectLongMap<V>
LongObjectHashMap. flipUniqueValues()
MutableObjectLongMap<V>
SynchronizedLongObjectMap. flipUniqueValues()
MutableObjectLongMap<V>
UnmodifiableLongObjectMap. flipUniqueValues()
<T, K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, LongFunction<? super T> valueFunction)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. of()
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. ofAll(ObjectLongMap<? extends K> map)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. ofInitialCapacity(int capacity)
MutableObjectLongMap<K>
SynchronizedObjectLongMap. reject(ObjectLongPredicate<? super K> predicate)
MutableObjectLongMap<K>
UnmodifiableObjectLongMap. reject(ObjectLongPredicate<? super K> predicate)
MutableObjectLongMap<K>
SynchronizedObjectLongMap. select(ObjectLongPredicate<? super K> predicate)
MutableObjectLongMap<K>
UnmodifiableObjectLongMap. select(ObjectLongPredicate<? super K> predicate)
<V1> MutableObjectLongMap<V1>
ByteObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
CharObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
DoubleObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
FloatObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
IntObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
LongObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
ShortObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedByteObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedCharObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedDoubleObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedFloatObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedIntObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedLongObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedShortObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableByteObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableCharObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableDoubleObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableFloatObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableIntObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableLongObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableShortObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
ByteObjectHashMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
CharObjectHashMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
DoubleObjectHashMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
FloatObjectHashMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
IntObjectHashMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
LongObjectHashMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
ShortObjectHashMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedByteObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedCharObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedDoubleObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedFloatObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedIntObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedLongObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedShortObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableByteObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableCharObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableDoubleObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableFloatObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableIntObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableLongObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableShortObjectMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. with()
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. withAll(ObjectLongMap<? extends K> map)
<K> MutableObjectLongMap<K>
MutableObjectLongMapFactoryImpl. withInitialCapacity(int capacity)
MutableObjectLongMap<K>
SynchronizedObjectLongMap. withKeyValue(K key, long value)
MutableObjectLongMap<K>
UnmodifiableObjectLongMap. withKeyValue(K key, long value)
MutableObjectLongMap<K>
SynchronizedObjectLongMap. withoutAllKeys(Iterable<? extends K> keys)
MutableObjectLongMap<K>
UnmodifiableObjectLongMap. withoutAllKeys(Iterable<? extends K> keys)
MutableObjectLongMap<K>
SynchronizedObjectLongMap. withoutKey(K key)
MutableObjectLongMap<K>
UnmodifiableObjectLongMap. withoutKey(K key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableObjectLongMap Constructor Description SynchronizedObjectLongMap(MutableObjectLongMap<K> map)
SynchronizedObjectLongMap(MutableObjectLongMap<K> map, Object newLock)
UnmodifiableObjectLongMap(MutableObjectLongMap<K> map)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableObjectLongMap Modifier and Type Method Description <V1> MutableObjectLongMap<V1>
OrderedMapAdapter. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<VV> MutableObjectLongMap<VV>
UnmodifiableMutableOrderedMap. sumByInt(Function<? super V,? extends VV> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
OrderedMapAdapter. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
<VV> MutableObjectLongMap<VV>
UnmodifiableMutableOrderedMap. sumByLong(Function<? super V,? extends VV> groupBy, LongFunction<? super V> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableObjectLongMap Modifier and Type Method Description <V1> MutableObjectLongMap<V1>
UnmodifiableTreeMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableTreeMap. sumByLong(Function<? super V,? extends V1> groupBy, LongFunction<? super V> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable that return MutableObjectLongMap Modifier and Type Method Description <V> MutableObjectLongMap<V>
ArrayStack. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
SynchronizedStack. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
UnmodifiableStack. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
ArrayStack. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
<V> MutableObjectLongMap<V>
SynchronizedStack. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
<V> MutableObjectLongMap<V>
UnmodifiableStack. sumByLong(Function<? super T,? extends V> groupBy, LongFunction<? super T> function)
-
Uses of MutableObjectLongMap in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return MutableObjectLongMap Modifier and Type Method Description static <V, T> MutableObjectLongMap<V>
InternalArrayIterate. sumByInt(T[] array, int size, Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
static <V, T> MutableObjectLongMap<V>
InternalArrayIterate. sumByLong(T[] array, int size, Function<? super T,? extends V> groupBy, LongFunction<? super T> function)