Uses of Interface
org.eclipse.collections.api.collection.primitive.MutableLongCollection
-
Packages that use MutableLongCollection Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.collection org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.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.ordered.primitive org.eclipse.collections.api.set.primitive 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 MutableLongCollection Modifier and Type Method Description default <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.primitive Modifier and Type Interface Description interfaceMutableLongBagThis 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 MutableLongCollection Modifier and Type Method Description default 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 MutableLongCollection Modifier and Type Method Description MutableLongCollectionMutableLongCollection. asSynchronized()MutableLongCollectionMutableLongCollection. asUnmodifiable()default MutableLongCollectionMutableLongCollection. newEmpty()Creates a new empty mutable version of the same collection type.MutableLongCollectionMutableLongCollection. reject(LongPredicate predicate)MutableLongCollectionMutableLongCollection. select(LongPredicate predicate)default MutableLongCollectionMutableLongCollection. tap(LongProcedure procedure)MutableLongCollectionMutableLongCollection. with(long element)MutableLongCollectionMutableLongCollection. withAll(LongIterable elements)MutableLongCollectionMutableLongCollection. without(long element)MutableLongCollectionMutableLongCollection. withoutAll(LongIterable elements) -
Uses of MutableLongCollection in org.eclipse.collections.api.list.primitive
Subinterfaces of MutableLongCollection in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interfaceMutableLongListThis 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 MutableLongCollection Modifier and Type Method Description MutableLongCollectionMutableObjectLongMap. reject(LongPredicate predicate)MutableLongCollectionMutableObjectLongMap. select(LongPredicate predicate)MutableLongCollectionLongValuesMap. values()Returns the values in this map as a separate collection.MutableLongCollectionObjectLongMap. 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 MutableLongCollection Modifier and Type Method Description default <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.primitive Modifier and Type Interface Description interfaceMutableLongSetThis file was automatically generated from template file mutablePrimitiveSet.stg.
-