Uses of Interface
org.eclipse.collections.api.collection.primitive.MutableLongCollection
Packages that use MutableLongCollection
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains mutable and immutable primitive list API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains API for mutable and immutable primitive sets.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the mutable primitive bag interfaces.
This package contains implementations of the
MutableBiMap interface.This package contains implementations of primitive procedures.
This package contains implementations of the
MutableCollection interface.This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.
This package contains implementations of the
MutableList interface.This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableMap interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap interface.This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of the
ImmutableStack interface.This package contains implementations of the
MutableStack interface.This package contains implementations of the mutable primitive stack interfaces.
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of MutableLongCollection in org.eclipse.collections.api
Methods in org.eclipse.collections.api with type parameters of type MutableLongCollectionModifier and TypeMethodDescriptiondefault <R extends MutableLongCollection>
RBooleanIterable.collectLong(BooleanToLongFunction function, R target) Returns the targetMutableLongCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableLongCollection>
RByteIterable.collectLong(ByteToLongFunction function, R target) Returns the targetMutableLongCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableLongCollection>
RCharIterable.collectLong(CharToLongFunction function, R target) Returns the targetMutableLongCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableLongCollection>
RDoubleIterable.collectLong(DoubleToLongFunction function, R target) Returns the targetMutableLongCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableLongCollection>
RFloatIterable.collectLong(FloatToLongFunction function, R target) Returns the targetMutableLongCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableLongCollection>
RIntIterable.collectLong(IntToLongFunction function, R target) Returns the targetMutableLongCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableLongCollection>
RLongIterable.collectLong(LongToLongFunction function, R target) Returns the targetMutableLongCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableLongCollection>
RRichIterable.collectLong(LongFunction<? super T> longFunction, R target) Same asRichIterable.collectLong(LongFunction), except that the results are gathered into the specifiedtargetcollection.default <R extends MutableLongCollection>
RShortIterable.collectLong(ShortToLongFunction function, R target) Returns the targetMutableLongCollectionwith the results of applying the specified function on each element of the source collection.default <R extends MutableLongCollection>
RRichIterable.flatCollectLong(Function<? super T, ? extends LongIterable> function, R target) Same as flatCollect, only the results are collected into the target collection.default <R extends MutableLongCollection>
RLongIterable.reject(LongPredicate predicate, R target) Same asLongIterable.reject(LongPredicate), only the results are added to the target MutableLongCollection.default <R extends MutableLongCollection>
RLongIterable.select(LongPredicate predicate, R target) Same asLongIterable.select(LongPredicate), only the results are added to the target MutableLongCollection. -
Uses of MutableLongCollection in org.eclipse.collections.api.bag.primitive
Subinterfaces of MutableLongCollection in org.eclipse.collections.api.bag.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file mutablePrimitiveBag.stg. -
Uses of MutableLongCollection in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return MutableLongCollectionModifier and TypeMethodDescriptiondefault MutableLongCollectionMutableCollection.collectLong(LongFunction<? super T> longFunction) Returns a new primitivelongiterable with the results of applying the specified function on each element of the source collection. -
Uses of MutableLongCollection in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive that return MutableLongCollectionModifier and TypeMethodDescriptionMutableLongCollection.asSynchronized()MutableLongCollection.asUnmodifiable()default MutableLongCollectionMutableLongCollection.newEmpty()Creates a new empty mutable version of the same collection type.MutableLongCollection.reject(LongPredicate predicate) MutableLongCollection.select(LongPredicate predicate) default MutableLongCollectionMutableLongCollection.tap(LongProcedure procedure) MutableLongCollection.with(long element) MutableLongCollection.withAll(LongIterable elements) MutableLongCollection.without(long element) MutableLongCollection.withoutAll(LongIterable elements) -
Uses of MutableLongCollection in org.eclipse.collections.api.list.primitive
Subinterfaces of MutableLongCollection in org.eclipse.collections.api.list.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file mutablePrimitiveList.stg. -
Uses of MutableLongCollection in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableLongCollectionModifier and TypeMethodDescriptionMutableObjectLongMap.reject(LongPredicate predicate) MutableObjectLongMap.select(LongPredicate predicate) LongValuesMap.values()Returns the values in this map as a separate collection.ObjectLongMap.values()Returns the values in this map as a separate collection. -
Uses of MutableLongCollection in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with type parameters of type MutableLongCollectionModifier and TypeMethodDescriptiondefault <R extends MutableLongCollection>
ROrderedLongIterable.rejectWithIndex(LongIntPredicate predicate, R target) Returns a new MutableLongCollection excluding all elements with corresponding indexes matching the specified predicate.default <R extends MutableLongCollection>
ROrderedLongIterable.selectWithIndex(LongIntPredicate predicate, R target) Returns a new MutableLongCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableLongCollection in org.eclipse.collections.api.set.primitive
Subinterfaces of MutableLongCollection in org.eclipse.collections.api.set.primitiveModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file mutablePrimitiveSet.stg. -
Uses of MutableLongCollection in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RUnmodifiableRichIterable.collectLong(LongFunction<? super T> longFunction, R target) <R extends MutableLongCollection>
RUnmodifiableRichIterable.flatCollectLong(Function<? super T, ? extends LongIterable> function, R target) -
Uses of MutableLongCollection in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RAbstractBag.collectLong(LongFunction<? super T> longFunction, R target) <R extends MutableLongCollection>
RAbstractBag.flatCollectLong(Function<? super T, ? extends LongIterable> function, R target) -
Uses of MutableLongCollection in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement MutableLongCollectionModifier and TypeClassDescriptionclassLongHashBag is similar toHashBag, and is memory-optimized for long primitives.classA synchronized view of aMutableLongBag.classThis file was automatically generated from template file unmodifiablePrimitiveBag.stg. -
Uses of MutableLongCollection in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RAbstractBiMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RAbstractBiMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) -
Uses of MutableLongCollection in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RUnmodifiableBiMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RUnmodifiableBiMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) -
Uses of MutableLongCollection in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as MutableLongCollectionModifier and TypeFieldDescriptionprivate final MutableLongCollectionCollectLongProcedure.longCollectionMethods in org.eclipse.collections.impl.block.procedure.primitive that return MutableLongCollectionConstructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type MutableLongCollectionModifierConstructorDescriptionCollectLongProcedure(LongFunction<? super T> longFunction, MutableLongCollection targetCollection) -
Uses of MutableLongCollection in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RAbstractSynchronizedRichIterable.collectLong(LongFunction<? super T> longFunction, R target) <R extends MutableLongCollection>
RAbstractSynchronizedRichIterable.flatCollectLong(Function<? super T, ? extends LongIterable> function, R target) -
Uses of MutableLongCollection in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RAbstractCollectionAdapter.collectLong(LongFunction<? super T> longFunction, R target) <R extends MutableLongCollection>
RAbstractMultiReaderMutableCollection.collectLong(LongFunction<? super T> longFunction, R target) final <R extends MutableLongCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection.collectLong(LongFunction<? super T> longFunction, R target) <R extends MutableLongCollection>
RAbstractUnmodifiableMutableCollection.collectLong(LongFunction<? super T> longFunction, R target) <R extends MutableLongCollection>
RAbstractMultiReaderMutableCollection.flatCollectLong(Function<? super T, ? extends LongIterable> function, R target) final <R extends MutableLongCollection>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection.flatCollectLong(Function<? super T, ? extends LongIterable> function, R target) <R extends MutableLongCollection>
RAbstractUnmodifiableMutableCollection.flatCollectLong(Function<? super T, ? extends LongIterable> function, R target) Methods in org.eclipse.collections.impl.collection.mutable that return MutableLongCollectionModifier and TypeMethodDescriptionAbstractSynchronizedMutableCollection.collectLong(LongFunction<? super T> longFunction) AbstractUnmodifiableMutableCollection.collectLong(LongFunction<? super T> longFunction) -
Uses of MutableLongCollection in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement MutableLongCollectionModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.classThis file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.classThis file was automatically generated from template file synchronizedPrimitiveCollection.stg.classThis file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Fields in org.eclipse.collections.impl.collection.mutable.primitive declared as MutableLongCollectionModifier and TypeFieldDescriptionprivate final MutableLongCollectionAbstractSynchronizedLongCollection.collectionprivate final MutableLongCollectionAbstractUnmodifiableLongCollection.collectionMethods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableLongCollectionModifier and TypeMethodDescriptionAbstractSynchronizedLongCollection.asSynchronized()AbstractUnmodifiableLongCollection.asSynchronized()AbstractSynchronizedLongCollection.asUnmodifiable()AbstractUnmodifiableLongCollection.asUnmodifiable()protected MutableLongCollectionAbstractSynchronizedLongCollection.getLongCollection()protected MutableLongCollectionAbstractUnmodifiableLongCollection.getLongCollection()SynchronizedLongCollection.newEmpty()UnmodifiableLongCollection.newEmpty()AbstractSynchronizedLongCollection.reject(LongPredicate predicate) AbstractUnmodifiableLongCollection.reject(LongPredicate predicate) AbstractSynchronizedLongCollection.select(LongPredicate predicate) AbstractUnmodifiableLongCollection.select(LongPredicate predicate) AbstractSynchronizedLongCollection.with(long element) AbstractUnmodifiableLongCollection.with(long element) AbstractSynchronizedLongCollection.withAll(LongIterable elements) AbstractUnmodifiableLongCollection.withAll(LongIterable elements) AbstractSynchronizedLongCollection.without(long element) AbstractUnmodifiableLongCollection.without(long element) AbstractSynchronizedLongCollection.withoutAll(LongIterable elements) AbstractUnmodifiableLongCollection.withoutAll(LongIterable elements) Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableLongCollectionModifier and TypeMethodDescriptionstatic SynchronizedLongCollectionSynchronizedLongCollection.of(MutableLongCollection collection) This method will take a MutableLongCollection and wrap it directly in a SynchronizedLongCollection.static SynchronizedLongCollectionSynchronizedLongCollection.of(MutableLongCollection collection, Object lock) This method will take a MutableLongCollection and wrap it directly in a SynchronizedLongCollection.static UnmodifiableLongCollectionUnmodifiableLongCollection.of(MutableLongCollection collection) This method will take a MutableLongCollection and wrap it directly in a UnmodifiableLongCollection.Constructors in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableLongCollectionModifierConstructorDescriptionprotectedprotectedAbstractSynchronizedLongCollection(MutableLongCollection collection, Object newLock) protectedprotectedSynchronizedLongCollection(MutableLongCollection collection) protectedSynchronizedLongCollection(MutableLongCollection collection, Object newLock) protectedUnmodifiableLongCollection(MutableLongCollection collection) -
Uses of MutableLongCollection in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with type parameters of type MutableLongCollectionModifier and TypeMethodDescriptionstatic <T, R extends MutableLongCollection>
Collector<T, ?, R> Collectors2.collectLong(LongFunction<? super T> function, Supplier<R> supplier) Returns a new MutableLongCollection with the results of applying the specified LongFunction on each element of the source. -
Uses of MutableLongCollection in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive with type parameters of type MutableLongCollectionModifier and TypeFieldDescriptionprivate final Function0<MutableLongCollection> ChunkLongIterable.ChunkLongIterator.speciesNewStrategy -
Uses of MutableLongCollection in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RImmutableLongArrayList.reject(LongPredicate predicate, R target) <R extends MutableLongCollection>
RImmutableLongArrayList.select(LongPredicate predicate, R target) -
Uses of MutableLongCollection in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RFastList.collectLong(LongFunction<? super T> longFunction, R target) <R extends MutableLongCollection>
RFastList.flatCollectLong(Function<? super T, ? extends LongIterable> function, R target) -
Uses of MutableLongCollection in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableLongCollectionModifier and TypeClassDescriptionclassLongArrayList is similar to FastList, and is memory-optimized for long primitives.classA synchronized view of aMutableLongList.classThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RLongArrayList.reject(LongPredicate predicate, R target) <R extends MutableLongCollection>
RSynchronizedLongList.rejectWithIndex(LongIntPredicate predicate, R target) Returns a new MutableLongCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableLongCollection>
RUnmodifiableLongList.rejectWithIndex(LongIntPredicate predicate, R target) Returns a new MutableLongCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableLongCollection>
RLongArrayList.select(LongPredicate predicate, R target) <R extends MutableLongCollection>
RSynchronizedLongList.selectWithIndex(LongIntPredicate predicate, R target) Returns a new MutableLongCollection including all elements with corresponding indexes matching the specified predicate.<R extends MutableLongCollection>
RUnmodifiableLongList.selectWithIndex(LongIntPredicate predicate, R target) Returns a new MutableLongCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableLongCollection in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RImmutableByteObjectEmptyMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableByteObjectHashMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableByteObjectSingletonMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableCharObjectEmptyMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableCharObjectHashMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableCharObjectSingletonMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableDoubleObjectEmptyMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableDoubleObjectHashMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableDoubleObjectSingletonMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableFloatObjectEmptyMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableFloatObjectHashMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableFloatObjectSingletonMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableIntObjectEmptyMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableIntObjectHashMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableIntObjectSingletonMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableLongObjectEmptyMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableLongObjectHashMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableLongObjectSingletonMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableShortObjectEmptyMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableShortObjectHashMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableShortObjectSingletonMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RImmutableByteObjectEmptyMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) <R extends MutableLongCollection>
RImmutableCharObjectEmptyMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) <R extends MutableLongCollection>
RImmutableDoubleObjectEmptyMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) <R extends MutableLongCollection>
RImmutableFloatObjectEmptyMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) <R extends MutableLongCollection>
RImmutableIntObjectEmptyMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) <R extends MutableLongCollection>
RImmutableLongObjectEmptyMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) <R extends MutableLongCollection>
RImmutableShortObjectEmptyMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) Methods in org.eclipse.collections.impl.map.immutable.primitive that return MutableLongCollectionModifier and TypeMethodDescriptionImmutableByteLongEmptyMap.values()ImmutableByteLongHashMap.values()ImmutableByteLongSingletonMap.values()ImmutableCharLongEmptyMap.values()ImmutableCharLongHashMap.values()ImmutableCharLongSingletonMap.values()ImmutableDoubleLongEmptyMap.values()ImmutableDoubleLongHashMap.values()ImmutableDoubleLongSingletonMap.values()ImmutableFloatLongEmptyMap.values()ImmutableFloatLongHashMap.values()ImmutableFloatLongSingletonMap.values()ImmutableIntLongEmptyMap.values()ImmutableIntLongHashMap.values()ImmutableIntLongSingletonMap.values()ImmutableLongLongEmptyMap.values()ImmutableLongLongHashMap.values()ImmutableLongLongSingletonMap.values()ImmutableObjectLongEmptyMap.values()ImmutableObjectLongHashMap.values()ImmutableObjectLongSingletonMap.values()ImmutableShortLongEmptyMap.values()ImmutableShortLongHashMap.values()ImmutableShortLongSingletonMap.values() -
Uses of MutableLongCollection in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RUnmodifiableMutableMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RUnmodifiableMutableMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) -
Uses of MutableLongCollection in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableLongCollectionModifier and TypeClassDescriptionclassThis file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.protected classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classprivate classMethods in org.eclipse.collections.impl.map.mutable.primitive with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RSynchronizedByteObjectMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RSynchronizedCharObjectMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RSynchronizedDoubleObjectMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RSynchronizedFloatObjectMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RSynchronizedIntObjectMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RSynchronizedLongObjectMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RSynchronizedShortObjectMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RUnmodifiableByteObjectMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RUnmodifiableCharObjectMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RUnmodifiableDoubleObjectMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RUnmodifiableFloatObjectMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RUnmodifiableIntObjectMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RUnmodifiableLongObjectMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RUnmodifiableShortObjectMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RSynchronizedByteObjectMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) <R extends MutableLongCollection>
RSynchronizedCharObjectMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) <R extends MutableLongCollection>
RSynchronizedDoubleObjectMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) <R extends MutableLongCollection>
RSynchronizedFloatObjectMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) <R extends MutableLongCollection>
RSynchronizedIntObjectMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) <R extends MutableLongCollection>
RSynchronizedLongObjectMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) <R extends MutableLongCollection>
RSynchronizedShortObjectMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableLongCollectionModifier and TypeMethodDescriptionAbstractMutableLongValuesMap.AbstractLongValuesCollection.asSynchronized()ObjectLongHashMap.ValuesCollection.asSynchronized()ObjectLongHashMapWithHashingStrategy.ValuesCollection.asSynchronized()AbstractMutableLongValuesMap.AbstractLongValuesCollection.asUnmodifiable()ObjectLongHashMap.ValuesCollection.asUnmodifiable()ObjectLongHashMapWithHashingStrategy.ValuesCollection.asUnmodifiable()ByteLongHashMap.ValuesCollection.newEmpty()CharLongHashMap.ValuesCollection.newEmpty()DoubleLongHashMap.ValuesCollection.newEmpty()FloatLongHashMap.ValuesCollection.newEmpty()IntLongHashMap.ValuesCollection.newEmpty()LongLongHashMap.ValuesCollection.newEmpty()ObjectLongHashMap.ValuesCollection.newEmpty()ObjectLongHashMapWithHashingStrategy.ValuesCollection.newEmpty()ShortLongHashMap.ValuesCollection.newEmpty()AbstractMutableLongValuesMap.AbstractLongValuesCollection.reject(LongPredicate predicate) ObjectLongHashMap.reject(LongPredicate predicate) ObjectLongHashMap.ValuesCollection.reject(LongPredicate predicate) ObjectLongHashMapWithHashingStrategy.reject(LongPredicate predicate) ObjectLongHashMapWithHashingStrategy.ValuesCollection.reject(LongPredicate predicate) SynchronizedObjectLongMap.reject(LongPredicate predicate) UnmodifiableObjectLongMap.reject(LongPredicate predicate) AbstractMutableLongValuesMap.AbstractLongValuesCollection.select(LongPredicate predicate) ObjectLongHashMap.select(LongPredicate predicate) ObjectLongHashMap.ValuesCollection.select(LongPredicate predicate) ObjectLongHashMapWithHashingStrategy.select(LongPredicate predicate) ObjectLongHashMapWithHashingStrategy.ValuesCollection.select(LongPredicate predicate) SynchronizedObjectLongMap.select(LongPredicate predicate) UnmodifiableObjectLongMap.select(LongPredicate predicate) ByteLongHashMap.values()CharLongHashMap.values()DoubleLongHashMap.values()FloatLongHashMap.values()IntLongHashMap.values()LongLongHashMap.values()ObjectLongHashMap.values()ObjectLongHashMapWithHashingStrategy.values()ShortLongHashMap.values()SynchronizedByteLongMap.values()SynchronizedCharLongMap.values()SynchronizedDoubleLongMap.values()SynchronizedFloatLongMap.values()SynchronizedIntLongMap.values()SynchronizedLongLongMap.values()SynchronizedObjectLongMap.values()SynchronizedShortLongMap.values()UnmodifiableByteLongMap.values()UnmodifiableCharLongMap.values()UnmodifiableDoubleLongMap.values()UnmodifiableFloatLongMap.values()UnmodifiableIntLongMap.values()UnmodifiableLongLongMap.values()UnmodifiableObjectLongMap.values()UnmodifiableShortLongMap.values()AbstractMutableLongValuesMap.AbstractLongValuesCollection.with(long element) ObjectLongHashMap.ValuesCollection.with(long element) ObjectLongHashMapWithHashingStrategy.ValuesCollection.with(long element) AbstractMutableLongValuesMap.AbstractLongValuesCollection.withAll(LongIterable elements) ObjectLongHashMap.ValuesCollection.withAll(LongIterable elements) ObjectLongHashMapWithHashingStrategy.ValuesCollection.withAll(LongIterable elements) AbstractMutableLongValuesMap.AbstractLongValuesCollection.without(long element) ObjectLongHashMap.ValuesCollection.without(long element) ObjectLongHashMapWithHashingStrategy.ValuesCollection.without(long element) AbstractMutableLongValuesMap.AbstractLongValuesCollection.withoutAll(LongIterable elements) ObjectLongHashMap.ValuesCollection.withoutAll(LongIterable elements) ObjectLongHashMapWithHashingStrategy.ValuesCollection.withoutAll(LongIterable elements) -
Uses of MutableLongCollection in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RUnmodifiableMutableOrderedMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RUnmodifiableMutableOrderedMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) -
Uses of MutableLongCollection in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RUnmodifiableTreeMap.collectLong(LongFunction<? super V> longFunction, R target) <R extends MutableLongCollection>
RUnmodifiableTreeMap.flatCollectLong(Function<? super V, ? extends LongIterable> function, R target) -
Uses of MutableLongCollection in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableLongCollectionModifier and TypeClassDescriptionclassThis file was automatically generated from template file primitiveHashSet.stg.classA synchronized view of aMutableLongSet.classThis file was automatically generated from template file unmodifiablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.mutable.primitive with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RLongHashSet.reject(LongPredicate predicate, R target) <R extends MutableLongCollection>
RLongHashSet.select(LongPredicate predicate, R target) -
Uses of MutableLongCollection in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RImmutableArrayStack.collectLong(LongFunction<? super T> longFunction, R target) Deprecated.<R extends MutableLongCollection>
RImmutableEmptyStack.collectLong(LongFunction<? super T> longFunction, R target) <R extends MutableLongCollection>
RImmutableArrayStack.flatCollectLong(Function<? super T, ? extends LongIterable> function, R target) Deprecated.<R extends MutableLongCollection>
RImmutableEmptyStack.flatCollectLong(Function<? super T, ? extends LongIterable> function, R target) -
Uses of MutableLongCollection in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RArrayStack.collectLong(LongFunction<? super T> longFunction, R target) <R extends MutableLongCollection>
RSynchronizedStack.collectLong(LongFunction<? super T> longFunction, R target) <R extends MutableLongCollection>
RUnmodifiableStack.collectLong(LongFunction<? super T> longFunction, R target) <R extends MutableLongCollection>
RArrayStack.flatCollectLong(Function<? super T, ? extends LongIterable> function, R target) <R extends MutableLongCollection>
RSynchronizedStack.flatCollectLong(Function<? super T, ? extends LongIterable> function, R target) <R extends MutableLongCollection>
RUnmodifiableStack.flatCollectLong(Function<? super T, ? extends LongIterable> function, R target) -
Uses of MutableLongCollection in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with type parameters of type MutableLongCollectionModifier and TypeMethodDescription<R extends MutableLongCollection>
RSynchronizedLongStack.rejectWithIndex(LongIntPredicate predicate, R target) Returns a new MutableLongCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableLongCollection>
RSynchronizedLongStack.selectWithIndex(LongIntPredicate predicate, R target) Returns a new MutableLongCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableLongCollection in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with type parameters of type MutableLongCollectionModifier and TypeMethodDescriptionstatic <T, R extends MutableLongCollection>
RArrayIterate.collectLong(T[] objectArray, LongFunction<? super T> longFunction, R target) static <T, R extends MutableLongCollection>
RArrayListIterate.collectLong(ArrayList<T> list, LongFunction<? super T> longFunction, R target) static <T, R extends MutableLongCollection>
RIterate.collectLong(Iterable<T> iterable, LongFunction<? super T> longFunction, R target) Same asIterate.collectLong(Iterable, LongFunction), except that the results are gathered into the specifiedtargetcollection.static <T, R extends MutableLongCollection>
RListIterate.collectLong(List<T> list, LongFunction<? super T> longFunction, R target) static <K, V, R extends MutableLongCollection>
RMapIterate.collectLong(Map<K, V> map, LongFunction<? super V> longFunction, R target) private static <T, R extends MutableLongCollection>
RArrayListIterate.collectLongFromInternalArray(ArrayList<T> source, LongFunction<? super T> longFunction, int elementsToCollect, R target) Methods in org.eclipse.collections.impl.utility that return MutableLongCollectionModifier and TypeMethodDescriptionstatic <T> MutableLongCollectionIterate.collectLong(Iterable<T> iterable, LongFunction<? super T> longFunction) Returns a newlongcollection with the results of applying the specified longFunction for each element of the iterable.static <K,V> MutableLongCollection MapIterate.collectLong(Map<K, V> map, LongFunction<? super V> longFunction) -
Uses of MutableLongCollection in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with type parameters of type MutableLongCollectionModifier and TypeMethodDescriptionstatic <R extends MutableLongCollection, T>
RInternalArrayIterate.collectLong(T[] items, int size, LongFunction<? super T> longFunction, R target) Adds all array elements to the target MutableLongCollection after using the function supplied to convert each source element to the appropriate typestatic <T, R extends MutableLongCollection>
RIterableIterate.collectLong(Iterable<T> iterable, LongFunction<? super T> longFunction, R target) static <T, R extends MutableLongCollection>
RIteratorIterate.collectLong(Iterator<T> iterator, LongFunction<? super T> longFunction, R target) static <T, R extends MutableLongCollection>
RRandomAccessListIterate.collectLong(List<T> list, LongFunction<? super T> longFunction, R target) Methods in org.eclipse.collections.impl.utility.internal that return MutableLongCollectionModifier and TypeMethodDescriptionstatic <T> MutableLongCollectionIterableIterate.collectLong(Iterable<T> iterable, LongFunction<? super T> longFunction) static <T> MutableLongCollectionIteratorIterate.collectLong(Iterator<T> iterator, LongFunction<? super T> longFunction) -
Uses of MutableLongCollection in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with type parameters of type MutableLongCollectionModifier and TypeMethodDescriptionstatic <R extends MutableLongCollection>
RLongIterableIterate.reject(LongIterable iterable, LongPredicate predicate, R targetCollection) static <R extends MutableLongCollection>
RLongIteratorIterate.reject(LongIterator iterator, LongPredicate predicate, R targetCollection) static <R extends MutableLongCollection>
RLongIterableIterate.select(LongIterable iterable, LongPredicate predicate, R targetCollection) static <R extends MutableLongCollection>
RLongIteratorIterate.select(LongIterator iterator, LongPredicate predicate, R targetCollection)