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.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 theMutableBiMap
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 theMutableCollection
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.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMap
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 theMutableSortedMap
interface.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.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 targetMutableLongCollection
with 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 targetMutableLongCollection
with 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 targetMutableLongCollection
with 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 targetMutableLongCollection
with 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 targetMutableLongCollection
with 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 targetMutableLongCollection
with 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 targetMutableLongCollection
with 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 specifiedtarget
collection.default <R extends MutableLongCollection>
RShortIterable. collectLong(ShortToLongFunction function, R target)
Returns the targetMutableLongCollection
with 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 interface
MutableLongBag
This 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 MutableLongCollection
MutableCollection. collectLong(LongFunction<? super T> longFunction)
Returns a new primitivelong
iterable 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 MutableLongCollection
MutableLongCollection. asSynchronized()
MutableLongCollection
MutableLongCollection. asUnmodifiable()
default MutableLongCollection
MutableLongCollection. newEmpty()
Creates a new empty mutable version of the same collection type.MutableLongCollection
MutableLongCollection. reject(LongPredicate predicate)
MutableLongCollection
MutableLongCollection. select(LongPredicate predicate)
default MutableLongCollection
MutableLongCollection. tap(LongProcedure procedure)
MutableLongCollection
MutableLongCollection. with(long element)
MutableLongCollection
MutableLongCollection. withAll(LongIterable elements)
MutableLongCollection
MutableLongCollection. without(long element)
MutableLongCollection
MutableLongCollection. 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 interface
MutableLongList
This 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 MutableLongCollection
MutableObjectLongMap. reject(LongPredicate predicate)
MutableLongCollection
MutableObjectLongMap. select(LongPredicate predicate)
MutableLongCollection
LongValuesMap. values()
Returns the values in this map as a separate collection.MutableLongCollection
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 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 interface
MutableLongSet
This 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>
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 class
LongHashBag
LongHashBag is similar toHashBag
, and is memory-optimized for long primitives.class
SynchronizedLongBag
A synchronized view of aMutableLongBag
.class
UnmodifiableLongBag
This 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
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as MutableLongCollection Modifier and Type Field Description private MutableLongCollection
CollectLongProcedure. longCollection
Methods in org.eclipse.collections.impl.block.procedure.primitive that return MutableLongCollection Modifier and Type Method Description MutableLongCollection
CollectLongProcedure. 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>
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)
<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 MutableLongCollection Modifier and Type Method Description MutableLongCollection
AbstractSynchronizedMutableCollection. collectLong(LongFunction<? super T> longFunction)
MutableLongCollection
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 MutableLongCollection Modifier and Type Class Description class
AbstractSynchronizedLongCollection
This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.class
AbstractUnmodifiableLongCollection
This file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.class
SynchronizedLongCollection
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.class
UnmodifiableLongCollection
This file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Fields in org.eclipse.collections.impl.collection.mutable.primitive declared as MutableLongCollection Modifier and Type Field Description private MutableLongCollection
AbstractSynchronizedLongCollection. collection
private MutableLongCollection
AbstractUnmodifiableLongCollection. collection
Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableLongCollection Modifier and Type Method Description MutableLongCollection
AbstractSynchronizedLongCollection. asSynchronized()
MutableLongCollection
AbstractUnmodifiableLongCollection. asSynchronized()
MutableLongCollection
AbstractSynchronizedLongCollection. asUnmodifiable()
MutableLongCollection
AbstractUnmodifiableLongCollection. asUnmodifiable()
protected MutableLongCollection
AbstractSynchronizedLongCollection. getLongCollection()
protected MutableLongCollection
AbstractUnmodifiableLongCollection. getLongCollection()
MutableLongCollection
SynchronizedLongCollection. newEmpty()
MutableLongCollection
UnmodifiableLongCollection. newEmpty()
MutableLongCollection
AbstractSynchronizedLongCollection. reject(LongPredicate predicate)
MutableLongCollection
AbstractUnmodifiableLongCollection. reject(LongPredicate predicate)
MutableLongCollection
AbstractSynchronizedLongCollection. select(LongPredicate predicate)
MutableLongCollection
AbstractUnmodifiableLongCollection. select(LongPredicate predicate)
MutableLongCollection
AbstractSynchronizedLongCollection. with(long element)
MutableLongCollection
AbstractUnmodifiableLongCollection. with(long element)
MutableLongCollection
AbstractSynchronizedLongCollection. withAll(LongIterable elements)
MutableLongCollection
AbstractUnmodifiableLongCollection. withAll(LongIterable elements)
MutableLongCollection
AbstractSynchronizedLongCollection. without(long element)
MutableLongCollection
AbstractUnmodifiableLongCollection. without(long element)
MutableLongCollection
AbstractSynchronizedLongCollection. withoutAll(LongIterable elements)
MutableLongCollection
AbstractUnmodifiableLongCollection. withoutAll(LongIterable elements)
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableLongCollection Modifier and Type Method Description static SynchronizedLongCollection
SynchronizedLongCollection. of(MutableLongCollection collection)
This method will take a MutableLongCollection and wrap it directly in a SynchronizedLongCollection.static SynchronizedLongCollection
SynchronizedLongCollection. of(MutableLongCollection collection, java.lang.Object lock)
This method will take a MutableLongCollection and wrap it directly in a SynchronizedLongCollection.static UnmodifiableLongCollection
UnmodifiableLongCollection. 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 MutableLongCollection Constructor Description AbstractSynchronizedLongCollection(MutableLongCollection collection)
AbstractSynchronizedLongCollection(MutableLongCollection collection, java.lang.Object newLock)
AbstractUnmodifiableLongCollection(MutableLongCollection collection)
SynchronizedLongCollection(MutableLongCollection collection)
SynchronizedLongCollection(MutableLongCollection collection, java.lang.Object newLock)
UnmodifiableLongCollection(MutableLongCollection collection)
-
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>
java.util.stream.Collector<T,?,R>Collectors2. collectLong(LongFunction<? super T> function, java.util.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 MutableLongCollection Modifier and Type Field Description private 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 MutableLongCollection Modifier and Type Method Description <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 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 class
LongArrayList
LongArrayList is similar to FastList, and is memory-optimized for long primitives.class
SynchronizedLongList
A synchronized view of aMutableLongList
.class
UnmodifiableLongList
This 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>
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 MutableLongCollection Modifier and Type Method Description <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 MutableLongCollection Modifier and Type Method Description MutableLongCollection
ImmutableByteLongEmptyMap. values()
MutableLongCollection
ImmutableByteLongHashMap. values()
MutableLongCollection
ImmutableByteLongSingletonMap. values()
MutableLongCollection
ImmutableCharLongEmptyMap. values()
MutableLongCollection
ImmutableCharLongHashMap. values()
MutableLongCollection
ImmutableCharLongSingletonMap. values()
MutableLongCollection
ImmutableDoubleLongEmptyMap. values()
MutableLongCollection
ImmutableDoubleLongHashMap. values()
MutableLongCollection
ImmutableDoubleLongSingletonMap. values()
MutableLongCollection
ImmutableFloatLongEmptyMap. values()
MutableLongCollection
ImmutableFloatLongHashMap. values()
MutableLongCollection
ImmutableFloatLongSingletonMap. values()
MutableLongCollection
ImmutableIntLongEmptyMap. values()
MutableLongCollection
ImmutableIntLongHashMap. values()
MutableLongCollection
ImmutableIntLongSingletonMap. values()
MutableLongCollection
ImmutableLongLongEmptyMap. values()
MutableLongCollection
ImmutableLongLongHashMap. values()
MutableLongCollection
ImmutableLongLongSingletonMap. values()
MutableLongCollection
ImmutableObjectLongEmptyMap. values()
MutableLongCollection
ImmutableObjectLongHashMap. values()
MutableLongCollection
ImmutableObjectLongSingletonMap. values()
MutableLongCollection
ImmutableShortLongEmptyMap. values()
MutableLongCollection
ImmutableShortLongHashMap. values()
MutableLongCollection
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 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
Methods in org.eclipse.collections.impl.map.mutable.primitive with type parameters of type MutableLongCollection Modifier and Type Method Description <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 MutableLongCollection Modifier and Type Method Description MutableLongCollection
AbstractMutableLongValuesMap.AbstractLongValuesCollection. asSynchronized()
MutableLongCollection
ObjectLongHashMap.ValuesCollection. asSynchronized()
MutableLongCollection
ObjectLongHashMapWithHashingStrategy.ValuesCollection. asSynchronized()
MutableLongCollection
AbstractMutableLongValuesMap.AbstractLongValuesCollection. asUnmodifiable()
MutableLongCollection
ObjectLongHashMap.ValuesCollection. asUnmodifiable()
MutableLongCollection
ObjectLongHashMapWithHashingStrategy.ValuesCollection. asUnmodifiable()
MutableLongCollection
ByteLongHashMap.ValuesCollection. newEmpty()
MutableLongCollection
CharLongHashMap.ValuesCollection. newEmpty()
MutableLongCollection
DoubleLongHashMap.ValuesCollection. newEmpty()
MutableLongCollection
FloatLongHashMap.ValuesCollection. newEmpty()
MutableLongCollection
IntLongHashMap.ValuesCollection. newEmpty()
MutableLongCollection
LongLongHashMap.ValuesCollection. newEmpty()
MutableLongCollection
ObjectLongHashMap.ValuesCollection. newEmpty()
MutableLongCollection
ObjectLongHashMapWithHashingStrategy.ValuesCollection. newEmpty()
MutableLongCollection
ShortLongHashMap.ValuesCollection. newEmpty()
MutableLongCollection
AbstractMutableLongValuesMap.AbstractLongValuesCollection. reject(LongPredicate predicate)
MutableLongCollection
ObjectLongHashMap. reject(LongPredicate predicate)
MutableLongCollection
ObjectLongHashMap.ValuesCollection. reject(LongPredicate predicate)
MutableLongCollection
ObjectLongHashMapWithHashingStrategy. reject(LongPredicate predicate)
MutableLongCollection
ObjectLongHashMapWithHashingStrategy.ValuesCollection. reject(LongPredicate predicate)
MutableLongCollection
SynchronizedObjectLongMap. reject(LongPredicate predicate)
MutableLongCollection
UnmodifiableObjectLongMap. reject(LongPredicate predicate)
MutableLongCollection
AbstractMutableLongValuesMap.AbstractLongValuesCollection. select(LongPredicate predicate)
MutableLongCollection
ObjectLongHashMap. select(LongPredicate predicate)
MutableLongCollection
ObjectLongHashMap.ValuesCollection. select(LongPredicate predicate)
MutableLongCollection
ObjectLongHashMapWithHashingStrategy. select(LongPredicate predicate)
MutableLongCollection
ObjectLongHashMapWithHashingStrategy.ValuesCollection. select(LongPredicate predicate)
MutableLongCollection
SynchronizedObjectLongMap. select(LongPredicate predicate)
MutableLongCollection
UnmodifiableObjectLongMap. select(LongPredicate predicate)
MutableLongCollection
ByteLongHashMap. values()
MutableLongCollection
CharLongHashMap. values()
MutableLongCollection
DoubleLongHashMap. values()
MutableLongCollection
FloatLongHashMap. values()
MutableLongCollection
IntLongHashMap. values()
MutableLongCollection
LongLongHashMap. values()
MutableLongCollection
ObjectLongHashMap. values()
MutableLongCollection
ObjectLongHashMapWithHashingStrategy. values()
MutableLongCollection
ShortLongHashMap. values()
MutableLongCollection
SynchronizedByteLongMap. values()
MutableLongCollection
SynchronizedCharLongMap. values()
MutableLongCollection
SynchronizedDoubleLongMap. values()
MutableLongCollection
SynchronizedFloatLongMap. values()
MutableLongCollection
SynchronizedIntLongMap. values()
MutableLongCollection
SynchronizedLongLongMap. values()
MutableLongCollection
SynchronizedObjectLongMap. values()
MutableLongCollection
SynchronizedShortLongMap. values()
MutableLongCollection
UnmodifiableByteLongMap. values()
MutableLongCollection
UnmodifiableCharLongMap. values()
MutableLongCollection
UnmodifiableDoubleLongMap. values()
MutableLongCollection
UnmodifiableFloatLongMap. values()
MutableLongCollection
UnmodifiableIntLongMap. values()
MutableLongCollection
UnmodifiableLongLongMap. values()
MutableLongCollection
UnmodifiableObjectLongMap. values()
MutableLongCollection
UnmodifiableShortLongMap. values()
MutableLongCollection
AbstractMutableLongValuesMap.AbstractLongValuesCollection. with(long element)
MutableLongCollection
ObjectLongHashMap.ValuesCollection. with(long element)
MutableLongCollection
ObjectLongHashMapWithHashingStrategy.ValuesCollection. with(long element)
MutableLongCollection
AbstractMutableLongValuesMap.AbstractLongValuesCollection. withAll(LongIterable elements)
MutableLongCollection
ObjectLongHashMap.ValuesCollection. withAll(LongIterable elements)
MutableLongCollection
ObjectLongHashMapWithHashingStrategy.ValuesCollection. withAll(LongIterable elements)
MutableLongCollection
AbstractMutableLongValuesMap.AbstractLongValuesCollection. without(long element)
MutableLongCollection
ObjectLongHashMap.ValuesCollection. without(long element)
MutableLongCollection
ObjectLongHashMapWithHashingStrategy.ValuesCollection. without(long element)
MutableLongCollection
AbstractMutableLongValuesMap.AbstractLongValuesCollection. withoutAll(LongIterable elements)
MutableLongCollection
ObjectLongHashMap.ValuesCollection. withoutAll(LongIterable elements)
MutableLongCollection
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 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 class
LongHashSet
This file was automatically generated from template file primitiveHashSet.stg.class
SynchronizedLongSet
A synchronized view of aMutableLongSet
.class
UnmodifiableLongSet
This 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.immutable
Methods in org.eclipse.collections.impl.stack.immutable with type parameters of type MutableLongCollection Modifier and Type Method Description <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 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.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with type parameters of type MutableLongCollection Modifier and Type Method Description <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 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(java.util.ArrayList<T> list, LongFunction<? super T> longFunction, R target)
static <T,R extends MutableLongCollection>
RIterate. collectLong(java.lang.Iterable<T> iterable, LongFunction<? super T> longFunction, R target)
Same asIterate.collectLong(Iterable, LongFunction)
, except that the results are gathered into the specifiedtarget
collection.static <T,R extends MutableLongCollection>
RListIterate. collectLong(java.util.List<T> list, LongFunction<? super T> longFunction, R target)
static <K,V,R extends MutableLongCollection>
RMapIterate. collectLong(java.util.Map<K,V> map, LongFunction<? super V> longFunction, R target)
private static <T,R extends MutableLongCollection>
RArrayListIterate. collectLongFromInternalArray(java.util.ArrayList<T> source, LongFunction<? super T> longFunction, int elementsToCollect, R target)
Methods in org.eclipse.collections.impl.utility that return MutableLongCollection Modifier and Type Method Description static <T> MutableLongCollection
Iterate. collectLong(java.lang.Iterable<T> iterable, LongFunction<? super T> longFunction)
Returns a newlong
collection with the results of applying the specified longFunction for each element of the iterable.static <K,V>
MutableLongCollectionMapIterate. collectLong(java.util.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(java.lang.Iterable<T> iterable, LongFunction<? super T> longFunction, R target)
static <T,R extends MutableLongCollection>
RIteratorIterate. collectLong(java.util.Iterator<T> iterator, LongFunction<? super T> longFunction, R target)
static <T,R extends MutableLongCollection>
RRandomAccessListIterate. collectLong(java.util.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> MutableLongCollection
IterableIterate. collectLong(java.lang.Iterable<T> iterable, LongFunction<? super T> longFunction)
static <T> MutableLongCollection
IteratorIterate. collectLong(java.util.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)
-