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.
-
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.