Uses of Interface
org.eclipse.collections.api.collection.primitive.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.set.primitive |
This package contains API for mutable and immutable primitive sets.
|
| org.eclipse.collections.impl |
This package contains implementations for Eclipse Collections API.
|
| org.eclipse.collections.impl.bag | |
| org.eclipse.collections.impl.bag.mutable.primitive |
This package contains implementations of the mutable primitive bag interfaces.
|
| org.eclipse.collections.impl.bimap | |
| org.eclipse.collections.impl.bimap.mutable |
This package contains implementations of the
MutableBiMap interface. |
| org.eclipse.collections.impl.block.procedure.primitive |
This package contains implementations of primitive procedures.
|
| org.eclipse.collections.impl.collection | |
| org.eclipse.collections.impl.collection.mutable |
This package contains implementations of the
MutableCollection interface. |
| org.eclipse.collections.impl.collection.mutable.primitive |
This package contains implementations of the mutable primitive collection interfaces.
|
| org.eclipse.collections.impl.collector | |
| org.eclipse.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
| org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
| 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.set.mutable.primitive |
This package contains implementations of the mutable primitive set interfaces.
|
| org.eclipse.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack interface. |
| org.eclipse.collections.impl.utility |
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
|
| org.eclipse.collections.impl.utility.internal |
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
|
| org.eclipse.collections.impl.utility.internal.primitive |
-
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.<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 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.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. -
Uses of MutableLongCollection in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with type parameters of type MutableLongCollection Modifier and Type Method Description <R extends MutableLongCollection>
RAbstractRichIterable. collectLong(LongFunction<? super T> longFunction, R target)<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 MutableLongCollection Modifier and Type Method Description <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 MutableLongCollection Modifier and Type Class Description classLongHashBagLongHashBag is similar toHashBag, and is memory-optimized for long primitives.classSynchronizedLongBagA synchronized view of aMutableLongBag.classUnmodifiableLongBagThis 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 MutableLongCollection Modifier and Type Method Description <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 MutableLongCollection Modifier and Type Method Description <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
Methods in org.eclipse.collections.impl.block.procedure.primitive that return MutableLongCollection Modifier and Type Method Description MutableLongCollectionCollectLongProcedure. getLongCollection()Constructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type MutableLongCollection Constructor Description CollectLongProcedure(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 MutableLongCollection Modifier and Type Method Description <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 MutableLongCollection Modifier and Type Method Description <R extends MutableLongCollection>
RAbstractCollectionAdapter. collectLong(LongFunction<? super T> longFunction, R target)<R extends MutableLongCollection>
RAbstractMultiReaderMutableCollection. 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)<R extends MutableLongCollection>
RAbstractUnmodifiableMutableCollection. flatCollectLong(Function<? super T,? extends LongIterable> function, R target)Methods in org.eclipse.collections.impl.collection.mutable that return MutableLongCollection Modifier and Type Method Description MutableLongCollectionAbstractCollectionAdapter. collectLong(LongFunction<? super T> longFunction)MutableLongCollectionAbstractSynchronizedMutableCollection. collectLong(LongFunction<? super T> longFunction)MutableLongCollectionAbstractUnmodifiableMutableCollection. 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 MutableLongCollection Modifier and Type Class Description classAbstractSynchronizedLongCollectionThis file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.classAbstractUnmodifiableLongCollectionThis file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.classSynchronizedLongCollectionThis file was automatically generated from template file synchronizedPrimitiveCollection.stg.classUnmodifiableLongCollectionThis file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableLongCollection Modifier and Type Method Description MutableLongCollectionAbstractSynchronizedLongCollection. asSynchronized()MutableLongCollectionAbstractUnmodifiableLongCollection. asSynchronized()MutableLongCollectionAbstractSynchronizedLongCollection. asUnmodifiable()MutableLongCollectionAbstractUnmodifiableLongCollection. asUnmodifiable()MutableLongCollectionSynchronizedLongCollection. newEmpty()MutableLongCollectionUnmodifiableLongCollection. newEmpty()MutableLongCollectionAbstractSynchronizedLongCollection. reject(LongPredicate predicate)MutableLongCollectionAbstractUnmodifiableLongCollection. reject(LongPredicate predicate)MutableLongCollectionAbstractSynchronizedLongCollection. select(LongPredicate predicate)MutableLongCollectionAbstractUnmodifiableLongCollection. select(LongPredicate predicate)MutableLongCollectionAbstractSynchronizedLongCollection. with(long element)MutableLongCollectionAbstractUnmodifiableLongCollection. with(long element)MutableLongCollectionAbstractSynchronizedLongCollection. withAll(LongIterable elements)MutableLongCollectionAbstractUnmodifiableLongCollection. withAll(LongIterable elements)MutableLongCollectionAbstractSynchronizedLongCollection. without(long element)MutableLongCollectionAbstractUnmodifiableLongCollection. without(long element)MutableLongCollectionAbstractSynchronizedLongCollection. withoutAll(LongIterable elements)MutableLongCollectionAbstractUnmodifiableLongCollection. withoutAll(LongIterable elements)Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableLongCollection Modifier and Type Method Description static 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. -
Uses of MutableLongCollection in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with type parameters of type MutableLongCollection Modifier and Type Method Description static <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.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with type parameters of type MutableLongCollection Modifier and Type Method Description <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 MutableLongCollection Modifier and Type Class Description classLongArrayListLongArrayList is similar toFastList, and is memory-optimized for long primitives.classSynchronizedLongListA synchronized view of aMutableLongList.classUnmodifiableLongListThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive with type parameters of type MutableLongCollection Modifier and Type Method Description <R extends MutableLongCollection>
RLongArrayList. reject(LongPredicate predicate, R target)<R extends MutableLongCollection>
RLongArrayList. select(LongPredicate predicate, R target) -
Uses of MutableLongCollection in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with type parameters of type MutableLongCollection Modifier and Type Method Description <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 MutableLongCollection Modifier and Type Class Description classAbstractMutableLongKeySetThis file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive with type parameters of type MutableLongCollection Modifier and Type Method Description <R extends MutableLongCollection>
RByteObjectHashMap. collectLong(LongFunction<? super V> longFunction, R target)<R extends MutableLongCollection>
RCharObjectHashMap. collectLong(LongFunction<? super V> longFunction, R target)<R extends MutableLongCollection>
RDoubleObjectHashMap. collectLong(LongFunction<? super V> longFunction, R target)<R extends MutableLongCollection>
RFloatObjectHashMap. collectLong(LongFunction<? super V> longFunction, R target)<R extends MutableLongCollection>
RIntObjectHashMap. collectLong(LongFunction<? super V> longFunction, R target)<R extends MutableLongCollection>
RLongObjectHashMap. collectLong(LongFunction<? super V> longFunction, R target)<R extends MutableLongCollection>
RShortObjectHashMap. collectLong(LongFunction<? super V> longFunction, R target)<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) -
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 MutableLongCollection Modifier and Type Method Description <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 MutableLongCollection Modifier and Type Method Description <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 MutableLongCollection Modifier and Type Class Description classLongHashSetThis file was automatically generated from template file primitiveHashSet.stg.classSynchronizedLongSetA synchronized view of aMutableLongSet.classUnmodifiableLongSetThis file was automatically generated from template file unmodifiablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.mutable.primitive with type parameters of type MutableLongCollection Modifier and Type Method Description <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.mutable
Methods in org.eclipse.collections.impl.stack.mutable with type parameters of type MutableLongCollection Modifier and Type Method Description <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.utility
Methods in org.eclipse.collections.impl.utility with type parameters of type MutableLongCollection Modifier and Type Method Description static <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)Methods in org.eclipse.collections.impl.utility that return MutableLongCollection Modifier and Type Method Description static <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> MutableLongCollectionMapIterate. 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 MutableLongCollection Modifier and Type Method Description static <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 MutableLongCollection Modifier and Type Method Description static <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 MutableLongCollection Modifier and Type Method Description static <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)