Uses of Interface
org.eclipse.collections.api.LongIterable
-
Packages that use LongIterable 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.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.factory.bag.primitive org.eclipse.collections.api.factory.list.primitive This package contains factory API for creating immutable primitive list instances.org.eclipse.collections.api.factory.set.primitive This package contains factory API for creating primitive set instances.org.eclipse.collections.api.factory.stack.primitive This package contains factory API for creating primitive stack instances.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.api.stack.primitive This package contains mutable and immutable primitive stack API.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.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.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.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.list.primitive This package contains implementations of the 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.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.set.primitive org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.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.stack.primitive org.eclipse.collections.impl.utility.internal.primitive org.eclipse.collections.impl.utility.primitive -
-
Uses of LongIterable in org.eclipse.collections.api
Subinterfaces of LongIterable in org.eclipse.collections.api Modifier and Type Interface Description interface
LazyLongIterable
This file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return LongIterable Modifier and Type Method Description LongIterable
RichIterable. 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.LongIterable
LongIterable. reject(LongPredicate predicate)
Returns a new LongIterable with all of the elements in the LongIterable that return false for the specified predicate.LongIterable
LongIterable. select(LongPredicate predicate)
Returns a new LongIterable with all of the elements in the LongIterable that return true for the specified predicate.default LongIterable
LongIterable. tap(LongProcedure procedure)
Methods in org.eclipse.collections.api that return types with arguments of type LongIterable Modifier and Type Method Description default RichIterable<LongIterable>
LongIterable. chunk(int size)
Partitions elements in fixed size chunks.Methods in org.eclipse.collections.api with parameters of type LongIterable Modifier and Type Method Description default boolean
LongIterable. containsAll(LongIterable source)
Returns true if all of the values specified in the source LongIterable are contained in the LongIterable, and false if they are not.default boolean
LongIterable. containsAny(LongIterable source)
Returns true if any of the values specified in the source LongIterable are contained in the LongIterable, and false if they are not.default boolean
LongIterable. containsNone(LongIterable source)
Returns true if none of the values specified in the source LongIterable are contained in the LongIterable, and false if they are.Method parameters in org.eclipse.collections.api with type arguments of type LongIterable Modifier and Type Method Description 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. -
Uses of LongIterable in org.eclipse.collections.api.bag.primitive
Subinterfaces of LongIterable in org.eclipse.collections.api.bag.primitive Modifier and Type Interface Description interface
ImmutableLongBag
This file was automatically generated from template file immutablePrimitiveBag.stg.interface
LongBag
This file was automatically generated from template file primitiveBag.stg.interface
MutableLongBag
This file was automatically generated from template file mutablePrimitiveBag.stg.Methods in org.eclipse.collections.api.bag.primitive with parameters of type LongIterable Modifier and Type Method Description ImmutableLongBag
ImmutableLongBag. newWithAll(LongIterable elements)
ImmutableLongBag
ImmutableLongBag. newWithoutAll(LongIterable elements)
MutableLongBag
MutableLongBag. withAll(LongIterable elements)
MutableLongBag
MutableLongBag. withoutAll(LongIterable elements)
-
Uses of LongIterable in org.eclipse.collections.api.collection.primitive
Subinterfaces of LongIterable in org.eclipse.collections.api.collection.primitive Modifier and Type Interface Description interface
ImmutableLongCollection
This file was automatically generated from template file immutablePrimitiveCollection.stg.interface
MutableLongCollection
This file was automatically generated from template file mutablePrimitiveCollection.stg.Methods in org.eclipse.collections.api.collection.primitive with parameters of type LongIterable Modifier and Type Method Description boolean
MutableLongCollection. addAll(LongIterable source)
ImmutableLongCollection
ImmutableLongCollection. newWithAll(LongIterable elements)
ImmutableLongCollection
ImmutableLongCollection. newWithoutAll(LongIterable elements)
boolean
MutableLongCollection. removeAll(LongIterable source)
boolean
MutableLongCollection. retainAll(LongIterable elements)
MutableLongCollection
MutableLongCollection. withAll(LongIterable elements)
MutableLongCollection
MutableLongCollection. withoutAll(LongIterable elements)
-
Uses of LongIterable in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive with parameters of type LongIterable Modifier and Type Method Description ImmutableLongBag
ImmutableLongBagFactory. ofAll(LongIterable items)
MutableLongBag
MutableLongBagFactory. ofAll(LongIterable items)
ImmutableLongBag
ImmutableLongBagFactory. withAll(LongIterable items)
MutableLongBag
MutableLongBagFactory. withAll(LongIterable items)
-
Uses of LongIterable in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive with parameters of type LongIterable Modifier and Type Method Description ImmutableLongList
ImmutableLongListFactory. ofAll(LongIterable items)
MutableLongList
MutableLongListFactory. ofAll(LongIterable items)
ImmutableLongList
ImmutableLongListFactory. withAll(LongIterable items)
MutableLongList
MutableLongListFactory. withAll(LongIterable items)
-
Uses of LongIterable in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive with parameters of type LongIterable Modifier and Type Method Description ImmutableLongSet
ImmutableLongSetFactory. ofAll(LongIterable items)
MutableLongSet
MutableLongSetFactory. ofAll(LongIterable items)
ImmutableLongSet
ImmutableLongSetFactory. withAll(LongIterable items)
MutableLongSet
MutableLongSetFactory. withAll(LongIterable items)
-
Uses of LongIterable in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive with parameters of type LongIterable Modifier and Type Method Description ImmutableLongStack
ImmutableLongStackFactory. ofAll(LongIterable items)
MutableLongStack
MutableLongStackFactory. ofAll(LongIterable items)
ImmutableLongStack
ImmutableLongStackFactory. ofAllReversed(LongIterable items)
MutableLongStack
MutableLongStackFactory. ofAllReversed(LongIterable items)
ImmutableLongStack
ImmutableLongStackFactory. withAll(LongIterable items)
MutableLongStack
MutableLongStackFactory. withAll(LongIterable items)
ImmutableLongStack
ImmutableLongStackFactory. withAllReversed(LongIterable items)
MutableLongStack
MutableLongStackFactory. withAllReversed(LongIterable items)
-
Uses of LongIterable in org.eclipse.collections.api.list.primitive
Subinterfaces of LongIterable in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interface
ImmutableLongList
This file was automatically generated from template file immutablePrimitiveList.stg.interface
LongList
This file was automatically generated from template file primitiveList.stg.interface
MutableLongList
This file was automatically generated from template file mutablePrimitiveList.stg.Methods in org.eclipse.collections.api.list.primitive with parameters of type LongIterable Modifier and Type Method Description boolean
MutableLongList. addAllAtIndex(int index, LongIterable source)
ImmutableLongList
ImmutableLongList. newWithAll(LongIterable elements)
ImmutableLongList
ImmutableLongList. newWithoutAll(LongIterable elements)
MutableLongList
MutableLongList. withAll(LongIterable elements)
MutableLongList
MutableLongList. withoutAll(LongIterable elements)
default ImmutableList<LongLongPair>
ImmutableLongList. zipLong(LongIterable iterable)
Returns anImmutableList
formed from thisImmutableLongList
and anotherLongList
by combining corresponding elements in pairs.default ListIterable<LongLongPair>
LongList. zipLong(LongIterable iterable)
Returns aListIterable
formed from thisLongList
and anotherLongList
by combining corresponding elements in pairs.default MutableList<LongLongPair>
MutableLongList. zipLong(LongIterable iterable)
Returns aMutableList
formed from thisMutableLongList
and anotherLongList
by combining corresponding elements in pairs. -
Uses of LongIterable in org.eclipse.collections.api.map.primitive
Subinterfaces of LongIterable in org.eclipse.collections.api.map.primitive Modifier and Type Interface Description interface
ByteLongMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
CharLongMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
DoubleLongMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
FloatLongMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
ImmutableByteLongMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableCharLongMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableDoubleLongMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableFloatLongMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableIntLongMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableLongLongMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableObjectLongMap<K>
This file was automatically generated from template file immutableObjectPrimitiveMap.stg.interface
ImmutableShortLongMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
IntLongMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
LongLongMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
LongValuesMap
This file was automatically generated from template file primitiveValuesMap.stg.interface
MutableByteLongMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableCharLongMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableDoubleLongMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableFloatLongMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableIntLongMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableLongLongMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableLongValuesMap
This file was automatically generated from template file mutablePrimitiveValuesMap.stg.interface
MutableObjectLongMap<K>
This file was automatically generated from template file mutableObjectPrimitiveMap.stg.interface
MutableShortLongMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
ObjectLongMap<K>
This file was automatically generated from template file objectPrimitiveMap.stg.interface
ShortLongMap
This file was automatically generated from template file primitivePrimitiveMap.stg.Methods in org.eclipse.collections.api.map.primitive with parameters of type LongIterable Modifier and Type Method Description ImmutableLongBooleanMap
ImmutableLongBooleanMap. newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableLongByteMap
ImmutableLongByteMap. newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableLongCharMap
ImmutableLongCharMap. newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableLongDoubleMap
ImmutableLongDoubleMap. newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableLongFloatMap
ImmutableLongFloatMap. newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableLongIntMap
ImmutableLongIntMap. newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableLongLongMap
ImmutableLongLongMap. newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableLongObjectMap<V>
ImmutableLongObjectMap. newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableLongShortMap
ImmutableLongShortMap. newWithoutAllKeys(LongIterable keys)
Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.MutableLongBooleanMap
MutableLongBooleanMap. withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableLongByteMap
MutableLongByteMap. withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableLongCharMap
MutableLongCharMap. withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableLongDoubleMap
MutableLongDoubleMap. withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableLongFloatMap
MutableLongFloatMap. withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableLongIntMap
MutableLongIntMap. withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableLongLongMap
MutableLongLongMap. withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableLongObjectMap<V>
MutableLongObjectMap. withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableLongShortMap
MutableLongShortMap. withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map. -
Uses of LongIterable in org.eclipse.collections.api.ordered.primitive
Subinterfaces of LongIterable in org.eclipse.collections.api.ordered.primitive Modifier and Type Interface Description interface
OrderedLongIterable
This file was automatically generated from template file orderedPrimitiveIterable.stg.interface
ReversibleLongIterable
This file was automatically generated from template file reversiblePrimitiveIterable.stg. -
Uses of LongIterable in org.eclipse.collections.api.set.primitive
Subinterfaces of LongIterable in org.eclipse.collections.api.set.primitive Modifier and Type Interface Description interface
ImmutableLongSet
This file was automatically generated from template file immutablePrimitiveSet.stg.interface
LongSet
This file was automatically generated from template file primitiveSet.stg.interface
MutableLongSet
This file was automatically generated from template file mutablePrimitiveSet.stg.Methods in org.eclipse.collections.api.set.primitive with parameters of type LongIterable Modifier and Type Method Description ImmutableLongSet
ImmutableLongSet. newWithAll(LongIterable elements)
ImmutableLongSet
ImmutableLongSet. newWithoutAll(LongIterable elements)
MutableLongSet
MutableLongSet. withAll(LongIterable elements)
MutableLongSet
MutableLongSet. withoutAll(LongIterable elements)
-
Uses of LongIterable in org.eclipse.collections.api.stack.primitive
Subinterfaces of LongIterable in org.eclipse.collections.api.stack.primitive Modifier and Type Interface Description interface
ImmutableLongStack
This file was automatically generated from template file immutablePrimitiveStack.stg.interface
LongStack
This file was automatically generated from template file primitiveStack.stg.interface
MutableLongStack
This file was automatically generated from template file mutablePrimitiveStack.stg. -
Uses of LongIterable in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl that return LongIterable Modifier and Type Method Description LongIterable
UnmodifiableRichIterable. collectLong(LongFunction<? super T> longFunction)
Method parameters in org.eclipse.collections.impl with type arguments of type LongIterable Modifier and Type Method Description <R extends MutableLongCollection>
RUnmodifiableRichIterable. flatCollectLong(Function<? super T,? extends LongIterable> function, R target)
-
Uses of LongIterable in org.eclipse.collections.impl.bag
Method parameters in org.eclipse.collections.impl.bag with type arguments of type LongIterable Modifier and Type Method Description <R extends MutableLongCollection>
RAbstractBag. flatCollectLong(Function<? super T,? extends LongIterable> function, R target)
-
Uses of LongIterable in org.eclipse.collections.impl.bag.immutable.primitive
Classes in org.eclipse.collections.impl.bag.immutable.primitive that implement LongIterable Modifier and Type Class Description (package private) class
ImmutableLongEmptyBag
ImmutableLongEmptyBag is an optimization forImmutableLongBag
of size 0.(package private) class
ImmutableLongHashBag
ImmutableLongHashBag is the non-modifiable equivalent ofLongHashBag
.(package private) class
ImmutableLongSingletonBag
ImmutableLongSingletonBag is an optimization forImmutableLongBag
of size 1.Methods in org.eclipse.collections.impl.bag.immutable.primitive that return types with arguments of type LongIterable Modifier and Type Method Description RichIterable<LongIterable>
ImmutableLongEmptyBag. chunk(int size)
RichIterable<LongIterable>
ImmutableLongHashBag. chunk(int size)
RichIterable<LongIterable>
ImmutableLongSingletonBag. chunk(int size)
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type LongIterable Modifier and Type Method Description boolean
ImmutableLongEmptyBag. containsAll(LongIterable source)
boolean
ImmutableLongHashBag. containsAll(LongIterable source)
boolean
ImmutableLongSingletonBag. containsAll(LongIterable source)
ImmutableLongBag
ImmutableLongEmptyBag. newWithAll(LongIterable elements)
ImmutableLongBag
ImmutableLongHashBag. newWithAll(LongIterable elements)
ImmutableLongBag
ImmutableLongSingletonBag. newWithAll(LongIterable elements)
ImmutableLongBag
ImmutableLongEmptyBag. newWithoutAll(LongIterable elements)
ImmutableLongBag
ImmutableLongHashBag. newWithoutAll(LongIterable elements)
ImmutableLongBag
ImmutableLongSingletonBag. newWithoutAll(LongIterable elements)
ImmutableLongBag
ImmutableLongBagFactoryImpl. ofAll(LongIterable items)
ImmutableLongBag
ImmutableLongBagFactoryImpl. withAll(LongIterable items)
-
Uses of LongIterable in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement LongIterable 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.Methods in org.eclipse.collections.impl.bag.mutable.primitive that return types with arguments of type LongIterable Modifier and Type Method Description RichIterable<LongIterable>
LongHashBag. chunk(int size)
Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type LongIterable Modifier and Type Method Description boolean
LongHashBag. addAll(LongIterable source)
static LongHashBag
LongHashBag. newBag(LongIterable source)
MutableLongBag
MutableLongBagFactoryImpl. ofAll(LongIterable items)
boolean
LongHashBag. removeAll(LongIterable source)
boolean
LongHashBag. retainAll(LongIterable source)
LongHashBag
LongHashBag. withAll(LongIterable iterable)
MutableLongBag
MutableLongBagFactoryImpl. withAll(LongIterable items)
SynchronizedLongBag
SynchronizedLongBag. withAll(LongIterable elements)
UnmodifiableLongBag
UnmodifiableLongBag. withAll(LongIterable elements)
LongHashBag
LongHashBag. withoutAll(LongIterable iterable)
SynchronizedLongBag
SynchronizedLongBag. withoutAll(LongIterable elements)
UnmodifiableLongBag
UnmodifiableLongBag. withoutAll(LongIterable elements)
Constructors in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type LongIterable Constructor Description LongHashBag(LongIterable iterable)
-
Uses of LongIterable in org.eclipse.collections.impl.bimap
Method parameters in org.eclipse.collections.impl.bimap with type arguments of type LongIterable Modifier and Type Method Description <R extends MutableLongCollection>
RAbstractBiMap. flatCollectLong(Function<? super V,? extends LongIterable> function, R target)
-
Uses of LongIterable in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return LongIterable Modifier and Type Method Description LongIterable
UnmodifiableBiMap. collectLong(LongFunction<? super V> longFunction)
Method parameters in org.eclipse.collections.impl.bimap.mutable with type arguments of type LongIterable Modifier and Type Method Description <R extends MutableLongCollection>
RUnmodifiableBiMap. flatCollectLong(Function<? super V,? extends LongIterable> function, R target)
-
Uses of LongIterable in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return LongIterable Modifier and Type Method Description LongIterable
AbstractSynchronizedRichIterable. collectLong(LongFunction<? super T> longFunction)
Method parameters in org.eclipse.collections.impl.collection with type arguments of type LongIterable Modifier and Type Method Description <R extends MutableLongCollection>
RAbstractSynchronizedRichIterable. flatCollectLong(Function<? super T,? extends LongIterable> function, R target)
-
Uses of LongIterable in org.eclipse.collections.impl.collection.mutable
Method parameters in org.eclipse.collections.impl.collection.mutable with type arguments of type LongIterable Modifier and Type Method Description <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)
-
Uses of LongIterable in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement LongIterable 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.Methods in org.eclipse.collections.impl.collection.mutable.primitive that return types with arguments of type LongIterable Modifier and Type Method Description RichIterable<LongIterable>
AbstractSynchronizedLongCollection. chunk(int size)
RichIterable<LongIterable>
AbstractUnmodifiableLongCollection. chunk(int size)
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type LongIterable Modifier and Type Method Description boolean
AbstractSynchronizedLongCollection. addAll(LongIterable source)
boolean
AbstractUnmodifiableLongCollection. addAll(LongIterable source)
boolean
AbstractSynchronizedLongCollection. containsAll(LongIterable source)
boolean
AbstractUnmodifiableLongCollection. containsAll(LongIterable source)
boolean
AbstractSynchronizedLongCollection. containsAny(LongIterable source)
boolean
AbstractUnmodifiableLongCollection. containsAny(LongIterable source)
boolean
AbstractSynchronizedLongCollection. containsNone(LongIterable source)
boolean
AbstractUnmodifiableLongCollection. containsNone(LongIterable source)
boolean
AbstractSynchronizedLongCollection. removeAll(LongIterable source)
boolean
AbstractUnmodifiableLongCollection. removeAll(LongIterable source)
boolean
AbstractSynchronizedLongCollection. retainAll(LongIterable source)
boolean
AbstractUnmodifiableLongCollection. retainAll(LongIterable source)
MutableLongCollection
AbstractSynchronizedLongCollection. withAll(LongIterable elements)
MutableLongCollection
AbstractUnmodifiableLongCollection. withAll(LongIterable elements)
MutableLongCollection
AbstractSynchronizedLongCollection. withoutAll(LongIterable elements)
MutableLongCollection
AbstractUnmodifiableLongCollection. withoutAll(LongIterable elements)
-
Uses of LongIterable in org.eclipse.collections.impl.lazy.primitive
Classes in org.eclipse.collections.impl.lazy.primitive that implement LongIterable Modifier and Type Class Description class
AbstractLazyLongIterable
This file was automatically generated from template file abstractLazyPrimitiveIterable.stg.class
CollectBooleanToLongIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectByteToLongIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectCharToLongIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectDoubleToLongIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectFloatToLongIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectIntToLongIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectLongIterable<T>
This file was automatically generated from template file collectPrimitiveIterable.stg.class
CollectLongToLongIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectShortToLongIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
LazyLongIterableAdapter
This file was automatically generated from template file lazyPrimitiveIterableAdapter.stg.class
ReverseLongIterable
This file was automatically generated from template file reversePrimitiveIterable.stg.class
SelectLongIterable
This file was automatically generated from template file selectPrimitiveIterable.stg.class
TapLongIterable
This file was automatically generated from template file tapPrimitiveIterable.stg.Fields in org.eclipse.collections.impl.lazy.primitive declared as LongIterable Modifier and Type Field Description private LongIterable
ChunkLongIterable. adapted
private LongIterable
TapLongIterable. adapted
private LongIterable
LazyLongIterableAdapter. delegate
private LongIterable
SelectLongIterable. delegate
private LongIterable
CollectLongToBooleanIterable. iterable
private LongIterable
CollectLongToByteIterable. iterable
private LongIterable
CollectLongToCharIterable. iterable
private LongIterable
CollectLongToDoubleIterable. iterable
private LongIterable
CollectLongToFloatIterable. iterable
private LongIterable
CollectLongToIntIterable. iterable
private LongIterable
CollectLongToLongIterable. iterable
private LongIterable
CollectLongToObjectIterable. iterable
private LongIterable
CollectLongToShortIterable. iterable
private LongIterable
FlatCollectLongToObjectIterable. iterable
Methods in org.eclipse.collections.impl.lazy.primitive that return LongIterable Modifier and Type Method Description LongIterable
ChunkLongIterable.ChunkLongIterator. next()
Methods in org.eclipse.collections.impl.lazy.primitive that return types with arguments of type LongIterable Modifier and Type Method Description RichIterable<LongIterable>
AbstractLazyLongIterable. chunk(int size)
java.util.Iterator<LongIterable>
ChunkLongIterable. iterator()
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type LongIterable Modifier and Type Method Description boolean
AbstractLazyLongIterable. containsAll(LongIterable source)
boolean
CollectLongIterable. containsAll(LongIterable source)
boolean
LazyLongIterableAdapter. containsAll(LongIterable source)
boolean
ReverseLongIterable. containsAll(LongIterable source)
boolean
SelectLongIterable. containsAll(LongIterable source)
Method parameters in org.eclipse.collections.impl.lazy.primitive with type arguments of type LongIterable Modifier and Type Method Description void
ChunkLongIterable. each(Procedure<? super LongIterable> procedure)
-
Uses of LongIterable in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement LongIterable Modifier and Type Class Description (package private) class
ImmutableLongArrayList
ImmutableLongArrayList is the non-modifiable equivalent ofLongArrayList
.(package private) class
ImmutableLongEmptyList
ImmutableLongEmptyList is an optimization forImmutableLongList
of size 0.(package private) class
ImmutableLongSingletonList
ImmutableLongSingletonList is an optimization forImmutableLongList
of size 1.Methods in org.eclipse.collections.impl.list.immutable.primitive that return types with arguments of type LongIterable Modifier and Type Method Description RichIterable<LongIterable>
ImmutableLongArrayList. chunk(int size)
RichIterable<LongIterable>
ImmutableLongEmptyList. chunk(int size)
RichIterable<LongIterable>
ImmutableLongSingletonList. chunk(int size)
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type LongIterable Modifier and Type Method Description boolean
ImmutableLongArrayList. containsAll(LongIterable source)
boolean
ImmutableLongEmptyList. containsAll(LongIterable source)
boolean
ImmutableLongSingletonList. containsAll(LongIterable source)
static ImmutableLongArrayList
ImmutableLongArrayList. newList(LongIterable iterable)
ImmutableLongList
ImmutableLongArrayList. newWithAll(LongIterable elements)
ImmutableLongList
ImmutableLongEmptyList. newWithAll(LongIterable elements)
ImmutableLongList
ImmutableLongSingletonList. newWithAll(LongIterable elements)
ImmutableLongList
ImmutableLongArrayList. newWithoutAll(LongIterable elements)
ImmutableLongList
ImmutableLongEmptyList. newWithoutAll(LongIterable elements)
ImmutableLongList
ImmutableLongSingletonList. newWithoutAll(LongIterable elements)
ImmutableLongList
ImmutableLongListFactoryImpl. ofAll(LongIterable items)
ImmutableLongList
ImmutableLongListFactoryImpl. withAll(LongIterable items)
ImmutableList<LongLongPair>
ImmutableLongArrayList. zipLong(LongIterable iterable)
ImmutableList<LongLongPair>
ImmutableLongEmptyList. zipLong(LongIterable iterable)
ImmutableList<LongLongPair>
ImmutableLongSingletonList. zipLong(LongIterable iterable)
-
Uses of LongIterable in org.eclipse.collections.impl.list.mutable
Method parameters in org.eclipse.collections.impl.list.mutable with type arguments of type LongIterable Modifier and Type Method Description <R extends MutableLongCollection>
RFastList. flatCollectLong(Function<? super T,? extends LongIterable> function, R target)
-
Uses of LongIterable in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement LongIterable 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 that return types with arguments of type LongIterable Modifier and Type Method Description RichIterable<LongIterable>
LongArrayList. chunk(int size)
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type LongIterable Modifier and Type Method Description boolean
LongArrayList. addAll(LongIterable source)
boolean
LongArrayList. addAllAtIndex(int index, LongIterable source)
boolean
SynchronizedLongList. addAllAtIndex(int index, LongIterable source)
boolean
UnmodifiableLongList. addAllAtIndex(int index, LongIterable source)
static LongArrayList
LongArrayList. newList(LongIterable source)
MutableLongList
MutableLongListFactoryImpl. ofAll(LongIterable items)
boolean
LongArrayList. removeAll(LongIterable source)
boolean
LongArrayList. retainAll(LongIterable source)
LongArrayList
LongArrayList. withAll(LongIterable elements)
MutableLongList
MutableLongListFactoryImpl. withAll(LongIterable items)
SynchronizedLongList
SynchronizedLongList. withAll(LongIterable elements)
UnmodifiableLongList
UnmodifiableLongList. withAll(LongIterable elements)
LongArrayList
LongArrayList. withoutAll(LongIterable elements)
SynchronizedLongList
SynchronizedLongList. withoutAll(LongIterable elements)
UnmodifiableLongList
UnmodifiableLongList. withoutAll(LongIterable elements)
MutableList<LongLongPair>
LongArrayList. zipLong(LongIterable iterable)
MutableList<LongLongPair>
SynchronizedLongList. zipLong(LongIterable iterable)
MutableList<LongLongPair>
UnmodifiableLongList. zipLong(LongIterable iterable)
-
Uses of LongIterable in org.eclipse.collections.impl.list.primitive
Classes in org.eclipse.collections.impl.list.primitive that implement LongIterable Modifier and Type Class Description class
LongInterval
An LongInterval is a range of longs that may be iterated over using a step value.Methods in org.eclipse.collections.impl.list.primitive that return types with arguments of type LongIterable Modifier and Type Method Description RichIterable<LongIterable>
LongInterval. chunk(int size)
Methods in org.eclipse.collections.impl.list.primitive with parameters of type LongIterable Modifier and Type Method Description boolean
LongInterval. containsAll(LongIterable source)
ImmutableLongList
LongInterval. newWithAll(LongIterable elements)
ImmutableLongList
LongInterval. newWithoutAll(LongIterable elements)
ImmutableList<LongLongPair>
LongInterval. zipLong(LongIterable iterable)
-
Uses of LongIterable in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement LongIterable Modifier and Type Class Description class
AbstractImmutableObjectLongMap<V>
This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) class
ImmutableByteLongEmptyMap
ImmutableByteLongEmptyMap is an optimization forImmutableByteLongMap
of size 0.(package private) class
ImmutableByteLongHashMap
ImmutableByteLongHashMap is the non-modifiable equivalent ofByteLongHashMap
.(package private) class
ImmutableByteLongSingletonMap
ImmutableByteLongSingletonMap is an optimization forImmutableByteLongMap
of size 1.(package private) class
ImmutableCharLongEmptyMap
ImmutableCharLongEmptyMap is an optimization forImmutableCharLongMap
of size 0.(package private) class
ImmutableCharLongHashMap
ImmutableCharLongHashMap is the non-modifiable equivalent ofCharLongHashMap
.(package private) class
ImmutableCharLongSingletonMap
ImmutableCharLongSingletonMap is an optimization forImmutableCharLongMap
of size 1.(package private) class
ImmutableDoubleLongEmptyMap
ImmutableDoubleLongEmptyMap is an optimization forImmutableDoubleLongMap
of size 0.(package private) class
ImmutableDoubleLongHashMap
ImmutableDoubleLongHashMap is the non-modifiable equivalent ofDoubleLongHashMap
.(package private) class
ImmutableDoubleLongSingletonMap
ImmutableDoubleLongSingletonMap is an optimization forImmutableDoubleLongMap
of size 1.(package private) class
ImmutableFloatLongEmptyMap
ImmutableFloatLongEmptyMap is an optimization forImmutableFloatLongMap
of size 0.(package private) class
ImmutableFloatLongHashMap
ImmutableFloatLongHashMap is the non-modifiable equivalent ofFloatLongHashMap
.(package private) class
ImmutableFloatLongSingletonMap
ImmutableFloatLongSingletonMap is an optimization forImmutableFloatLongMap
of size 1.(package private) class
ImmutableIntLongEmptyMap
ImmutableIntLongEmptyMap is an optimization forImmutableIntLongMap
of size 0.(package private) class
ImmutableIntLongHashMap
ImmutableIntLongHashMap is the non-modifiable equivalent ofIntLongHashMap
.(package private) class
ImmutableIntLongSingletonMap
ImmutableIntLongSingletonMap is an optimization forImmutableIntLongMap
of size 1.(package private) class
ImmutableLongLongEmptyMap
ImmutableLongLongEmptyMap is an optimization forImmutableLongLongMap
of size 0.(package private) class
ImmutableLongLongHashMap
ImmutableLongLongHashMap is the non-modifiable equivalent ofLongLongHashMap
.(package private) class
ImmutableLongLongSingletonMap
ImmutableLongLongSingletonMap is an optimization forImmutableLongLongMap
of size 1.(package private) class
ImmutableObjectLongEmptyMap<K>
ImmutableObjectLongEmptyMap is an optimization forImmutableObjectLongMap
of size 0.(package private) class
ImmutableObjectLongHashMap<K>
ImmutableObjectLongHashMap is the non-modifiable equivalent ofObjectLongHashMap
.(package private) class
ImmutableObjectLongSingletonMap<K>
ImmutableObjectLongSingletonMap is an optimization forImmutableObjectLongMap
of size 1.(package private) class
ImmutableShortLongEmptyMap
ImmutableShortLongEmptyMap is an optimization forImmutableShortLongMap
of size 0.(package private) class
ImmutableShortLongHashMap
ImmutableShortLongHashMap is the non-modifiable equivalent ofShortLongHashMap
.(package private) class
ImmutableShortLongSingletonMap
ImmutableShortLongSingletonMap is an optimization forImmutableShortLongMap
of size 1.Methods in org.eclipse.collections.impl.map.immutable.primitive that return types with arguments of type LongIterable Modifier and Type Method Description RichIterable<LongIterable>
ImmutableByteLongEmptyMap. chunk(int size)
RichIterable<LongIterable>
ImmutableByteLongHashMap. chunk(int size)
RichIterable<LongIterable>
ImmutableByteLongSingletonMap. chunk(int size)
RichIterable<LongIterable>
ImmutableCharLongEmptyMap. chunk(int size)
RichIterable<LongIterable>
ImmutableCharLongHashMap. chunk(int size)
RichIterable<LongIterable>
ImmutableCharLongSingletonMap. chunk(int size)
RichIterable<LongIterable>
ImmutableDoubleLongEmptyMap. chunk(int size)
RichIterable<LongIterable>
ImmutableDoubleLongHashMap. chunk(int size)
RichIterable<LongIterable>
ImmutableDoubleLongSingletonMap. chunk(int size)
RichIterable<LongIterable>
ImmutableFloatLongEmptyMap. chunk(int size)
RichIterable<LongIterable>
ImmutableFloatLongHashMap. chunk(int size)
RichIterable<LongIterable>
ImmutableFloatLongSingletonMap. chunk(int size)
RichIterable<LongIterable>
ImmutableIntLongEmptyMap. chunk(int size)
RichIterable<LongIterable>
ImmutableIntLongHashMap. chunk(int size)
RichIterable<LongIterable>
ImmutableIntLongSingletonMap. chunk(int size)
RichIterable<LongIterable>
ImmutableLongLongEmptyMap. chunk(int size)
RichIterable<LongIterable>
ImmutableLongLongHashMap. chunk(int size)
RichIterable<LongIterable>
ImmutableLongLongSingletonMap. chunk(int size)
RichIterable<LongIterable>
ImmutableObjectLongEmptyMap. chunk(int size)
RichIterable<LongIterable>
ImmutableObjectLongHashMap. chunk(int size)
RichIterable<LongIterable>
ImmutableObjectLongSingletonMap. chunk(int size)
RichIterable<LongIterable>
ImmutableShortLongEmptyMap. chunk(int size)
RichIterable<LongIterable>
ImmutableShortLongHashMap. chunk(int size)
RichIterable<LongIterable>
ImmutableShortLongSingletonMap. chunk(int size)
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type LongIterable Modifier and Type Method Description boolean
ImmutableByteLongEmptyMap. containsAll(LongIterable source)
boolean
ImmutableByteLongHashMap. containsAll(LongIterable source)
boolean
ImmutableByteLongSingletonMap. containsAll(LongIterable source)
boolean
ImmutableCharLongEmptyMap. containsAll(LongIterable source)
boolean
ImmutableCharLongHashMap. containsAll(LongIterable source)
boolean
ImmutableCharLongSingletonMap. containsAll(LongIterable source)
boolean
ImmutableDoubleLongEmptyMap. containsAll(LongIterable source)
boolean
ImmutableDoubleLongHashMap. containsAll(LongIterable source)
boolean
ImmutableDoubleLongSingletonMap. containsAll(LongIterable source)
boolean
ImmutableFloatLongEmptyMap. containsAll(LongIterable source)
boolean
ImmutableFloatLongHashMap. containsAll(LongIterable source)
boolean
ImmutableFloatLongSingletonMap. containsAll(LongIterable source)
boolean
ImmutableIntLongEmptyMap. containsAll(LongIterable source)
boolean
ImmutableIntLongHashMap. containsAll(LongIterable source)
boolean
ImmutableIntLongSingletonMap. containsAll(LongIterable source)
boolean
ImmutableLongLongEmptyMap. containsAll(LongIterable source)
boolean
ImmutableLongLongHashMap. containsAll(LongIterable source)
boolean
ImmutableLongLongSingletonMap. containsAll(LongIterable source)
boolean
ImmutableObjectLongEmptyMap. containsAll(LongIterable source)
boolean
ImmutableObjectLongHashMap. containsAll(LongIterable source)
boolean
ImmutableObjectLongSingletonMap. containsAll(LongIterable source)
boolean
ImmutableShortLongEmptyMap. containsAll(LongIterable source)
boolean
ImmutableShortLongHashMap. containsAll(LongIterable source)
boolean
ImmutableShortLongSingletonMap. containsAll(LongIterable source)
ImmutableLongBooleanMap
ImmutableLongBooleanEmptyMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongBooleanMap
ImmutableLongBooleanHashMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongBooleanMap
ImmutableLongBooleanSingletonMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongByteMap
ImmutableLongByteEmptyMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongByteMap
ImmutableLongByteHashMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongByteMap
ImmutableLongByteSingletonMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongCharMap
ImmutableLongCharEmptyMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongCharMap
ImmutableLongCharHashMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongCharMap
ImmutableLongCharSingletonMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongDoubleMap
ImmutableLongDoubleEmptyMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongDoubleMap
ImmutableLongDoubleHashMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongDoubleMap
ImmutableLongDoubleSingletonMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongFloatMap
ImmutableLongFloatEmptyMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongFloatMap
ImmutableLongFloatHashMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongFloatMap
ImmutableLongFloatSingletonMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongIntMap
ImmutableLongIntEmptyMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongIntMap
ImmutableLongIntHashMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongIntMap
ImmutableLongIntSingletonMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongLongMap
ImmutableLongLongEmptyMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongLongMap
ImmutableLongLongHashMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongLongMap
ImmutableLongLongSingletonMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongObjectMap<V>
ImmutableLongObjectEmptyMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongObjectMap<V>
ImmutableLongObjectHashMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongObjectMap<V>
ImmutableLongObjectSingletonMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongShortMap
ImmutableLongShortEmptyMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongShortMap
ImmutableLongShortHashMap. newWithoutAllKeys(LongIterable keys)
ImmutableLongShortMap
ImmutableLongShortSingletonMap. newWithoutAllKeys(LongIterable keys)
Method parameters in org.eclipse.collections.impl.map.immutable.primitive with type arguments of type LongIterable Modifier and Type Method Description <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)
-
Uses of LongIterable in org.eclipse.collections.impl.map.mutable
Method parameters in org.eclipse.collections.impl.map.mutable with type arguments of type LongIterable Modifier and Type Method Description <R extends MutableLongCollection>
RUnmodifiableMutableMap. flatCollectLong(Function<? super V,? extends LongIterable> function, R target)
-
Uses of LongIterable in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement LongIterable Modifier and Type Class Description class
AbstractMutableLongKeySet
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.class
AbstractMutableLongValuesMap
This file was automatically generated from template file abstractMutablePrimitiveValuesMap.stg.protected class
AbstractMutableLongValuesMap.AbstractLongValuesCollection
class
ByteLongHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
ByteLongHashMap.ValuesCollection
class
CharLongHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
CharLongHashMap.ValuesCollection
class
DoubleLongHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
DoubleLongHashMap.ValuesCollection
class
FloatLongHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
FloatLongHashMap.ValuesCollection
(package private) class
ImmutableLongLongMapKeySet
This file was automatically generated from template file immutablePrimitivePrimitiveMapKeySet.stg(package private) class
ImmutableLongMapKeySet
This file was automatically generated from template file immutablePrimitiveMapKeySet.stgclass
IntLongHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
IntLongHashMap.ValuesCollection
private class
LongBooleanHashMap.KeySet
private class
LongBooleanHashMap.KeysView
private class
LongByteHashMap.KeySet
private class
LongByteHashMap.KeysView
private class
LongCharHashMap.KeySet
private class
LongCharHashMap.KeysView
private class
LongDoubleHashMap.KeySet
private class
LongDoubleHashMap.KeysView
private class
LongFloatHashMap.KeySet
private class
LongFloatHashMap.KeysView
private class
LongIntHashMap.KeySet
private class
LongIntHashMap.KeysView
class
LongLongHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
LongLongHashMap.KeySet
private class
LongLongHashMap.KeysView
private class
LongLongHashMap.ValuesCollection
private class
LongObjectHashMap.KeySet
private class
LongObjectHashMap.KeysView
private class
LongShortHashMap.KeySet
private class
LongShortHashMap.KeysView
class
ObjectLongHashMap<K>
This file was automatically generated from template file objectPrimitiveHashMap.stg.private class
ObjectLongHashMap.ValuesCollection
class
ObjectLongHashMapWithHashingStrategy<K>
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.private class
ObjectLongHashMapWithHashingStrategy.ValuesCollection
class
ShortLongHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
ShortLongHashMap.ValuesCollection
class
SynchronizedByteLongMap
A synchronized view of aMutableByteLongMap
.class
SynchronizedCharLongMap
A synchronized view of aMutableCharLongMap
.class
SynchronizedDoubleLongMap
A synchronized view of aMutableDoubleLongMap
.class
SynchronizedFloatLongMap
A synchronized view of aMutableFloatLongMap
.class
SynchronizedIntLongMap
A synchronized view of aMutableIntLongMap
.class
SynchronizedLongLongMap
A synchronized view of aMutableLongLongMap
.class
SynchronizedObjectLongMap<K>
A synchronized view of aMutableObjectLongMap
.class
SynchronizedShortLongMap
A synchronized view of aMutableShortLongMap
.class
UnmodifiableByteLongMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableCharLongMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableDoubleLongMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableFloatLongMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableIntLongMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableLongLongMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableObjectLongMap<K>
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.class
UnmodifiableShortLongMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return types with arguments of type LongIterable Modifier and Type Method Description RichIterable<LongIterable>
AbstractMutableLongKeySet. chunk(int size)
RichIterable<LongIterable>
AbstractMutableLongValuesMap.AbstractLongValuesCollection. chunk(int size)
RichIterable<LongIterable>
AbstractMutableLongValuesMap. chunk(int size)
RichIterable<LongIterable>
ObjectLongHashMap. chunk(int size)
RichIterable<LongIterable>
ObjectLongHashMap.ValuesCollection. chunk(int size)
RichIterable<LongIterable>
ObjectLongHashMapWithHashingStrategy. chunk(int size)
RichIterable<LongIterable>
ObjectLongHashMapWithHashingStrategy.ValuesCollection. chunk(int size)
RichIterable<LongIterable>
SynchronizedByteLongMap. chunk(int size)
RichIterable<LongIterable>
SynchronizedCharLongMap. chunk(int size)
RichIterable<LongIterable>
SynchronizedDoubleLongMap. chunk(int size)
RichIterable<LongIterable>
SynchronizedFloatLongMap. chunk(int size)
RichIterable<LongIterable>
SynchronizedIntLongMap. chunk(int size)
RichIterable<LongIterable>
SynchronizedLongLongMap. chunk(int size)
RichIterable<LongIterable>
SynchronizedObjectLongMap. chunk(int size)
RichIterable<LongIterable>
SynchronizedShortLongMap. chunk(int size)
RichIterable<LongIterable>
UnmodifiableByteLongMap. chunk(int size)
RichIterable<LongIterable>
UnmodifiableCharLongMap. chunk(int size)
RichIterable<LongIterable>
UnmodifiableDoubleLongMap. chunk(int size)
RichIterable<LongIterable>
UnmodifiableFloatLongMap. chunk(int size)
RichIterable<LongIterable>
UnmodifiableIntLongMap. chunk(int size)
RichIterable<LongIterable>
UnmodifiableLongLongMap. chunk(int size)
RichIterable<LongIterable>
UnmodifiableObjectLongMap. chunk(int size)
RichIterable<LongIterable>
UnmodifiableShortLongMap. chunk(int size)
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type LongIterable Modifier and Type Method Description boolean
AbstractMutableLongKeySet. addAll(LongIterable source)
boolean
AbstractMutableLongValuesMap.AbstractLongValuesCollection. addAll(LongIterable source)
boolean
ObjectLongHashMap.ValuesCollection. addAll(LongIterable source)
boolean
ObjectLongHashMapWithHashingStrategy.ValuesCollection. addAll(LongIterable source)
boolean
AbstractMutableLongKeySet. containsAll(LongIterable source)
boolean
AbstractMutableLongValuesMap.AbstractLongValuesCollection. containsAll(LongIterable source)
boolean
AbstractMutableLongValuesMap. containsAll(LongIterable source)
boolean
LongBooleanHashMap.KeysView. containsAll(LongIterable source)
boolean
ObjectLongHashMap. containsAll(LongIterable source)
boolean
ObjectLongHashMap.ValuesCollection. containsAll(LongIterable source)
boolean
ObjectLongHashMapWithHashingStrategy. containsAll(LongIterable source)
boolean
ObjectLongHashMapWithHashingStrategy.ValuesCollection. containsAll(LongIterable source)
boolean
SynchronizedByteLongMap. containsAll(LongIterable source)
boolean
SynchronizedCharLongMap. containsAll(LongIterable source)
boolean
SynchronizedDoubleLongMap. containsAll(LongIterable source)
boolean
SynchronizedFloatLongMap. containsAll(LongIterable source)
boolean
SynchronizedIntLongMap. containsAll(LongIterable source)
boolean
SynchronizedLongLongMap. containsAll(LongIterable source)
boolean
SynchronizedObjectLongMap. containsAll(LongIterable source)
boolean
SynchronizedShortLongMap. containsAll(LongIterable source)
boolean
UnmodifiableByteLongMap. containsAll(LongIterable source)
boolean
UnmodifiableCharLongMap. containsAll(LongIterable source)
boolean
UnmodifiableDoubleLongMap. containsAll(LongIterable source)
boolean
UnmodifiableFloatLongMap. containsAll(LongIterable source)
boolean
UnmodifiableIntLongMap. containsAll(LongIterable source)
boolean
UnmodifiableLongLongMap. containsAll(LongIterable source)
boolean
UnmodifiableObjectLongMap. containsAll(LongIterable source)
boolean
UnmodifiableShortLongMap. containsAll(LongIterable source)
boolean
AbstractMutableLongKeySet. removeAll(LongIterable source)
boolean
AbstractMutableLongValuesMap.AbstractLongValuesCollection. removeAll(LongIterable source)
boolean
ObjectLongHashMap.ValuesCollection. removeAll(LongIterable source)
boolean
ObjectLongHashMapWithHashingStrategy.ValuesCollection. removeAll(LongIterable source)
boolean
ByteLongHashMap.ValuesCollection. retainAll(LongIterable source)
boolean
CharLongHashMap.ValuesCollection. retainAll(LongIterable source)
boolean
DoubleLongHashMap.ValuesCollection. retainAll(LongIterable source)
boolean
FloatLongHashMap.ValuesCollection. retainAll(LongIterable source)
boolean
IntLongHashMap.ValuesCollection. retainAll(LongIterable source)
boolean
LongBooleanHashMap.KeySet. retainAll(LongIterable source)
boolean
LongByteHashMap.KeySet. retainAll(LongIterable source)
boolean
LongCharHashMap.KeySet. retainAll(LongIterable source)
boolean
LongDoubleHashMap.KeySet. retainAll(LongIterable source)
boolean
LongFloatHashMap.KeySet. retainAll(LongIterable source)
boolean
LongIntHashMap.KeySet. retainAll(LongIterable source)
boolean
LongLongHashMap.KeySet. retainAll(LongIterable source)
boolean
LongLongHashMap.ValuesCollection. retainAll(LongIterable source)
boolean
LongObjectHashMap.KeySet. retainAll(LongIterable source)
boolean
LongShortHashMap.KeySet. retainAll(LongIterable source)
boolean
ObjectLongHashMap.ValuesCollection. retainAll(LongIterable source)
boolean
ObjectLongHashMapWithHashingStrategy.ValuesCollection. retainAll(LongIterable source)
boolean
ShortLongHashMap.ValuesCollection. retainAll(LongIterable source)
MutableLongSet
AbstractMutableLongKeySet. withAll(LongIterable elements)
MutableLongCollection
AbstractMutableLongValuesMap.AbstractLongValuesCollection. withAll(LongIterable elements)
MutableLongCollection
ObjectLongHashMap.ValuesCollection. withAll(LongIterable elements)
MutableLongCollection
ObjectLongHashMapWithHashingStrategy.ValuesCollection. withAll(LongIterable elements)
MutableLongSet
AbstractMutableLongKeySet. withoutAll(LongIterable elements)
MutableLongCollection
AbstractMutableLongValuesMap.AbstractLongValuesCollection. withoutAll(LongIterable elements)
MutableLongCollection
ObjectLongHashMap.ValuesCollection. withoutAll(LongIterable elements)
MutableLongCollection
ObjectLongHashMapWithHashingStrategy.ValuesCollection. withoutAll(LongIterable elements)
LongBooleanHashMap
LongBooleanHashMap. withoutAllKeys(LongIterable keys)
LongByteHashMap
LongByteHashMap. withoutAllKeys(LongIterable keys)
LongCharHashMap
LongCharHashMap. withoutAllKeys(LongIterable keys)
LongDoubleHashMap
LongDoubleHashMap. withoutAllKeys(LongIterable keys)
LongFloatHashMap
LongFloatHashMap. withoutAllKeys(LongIterable keys)
LongIntHashMap
LongIntHashMap. withoutAllKeys(LongIterable keys)
LongLongHashMap
LongLongHashMap. withoutAllKeys(LongIterable keys)
MutableLongObjectMap<V>
LongObjectHashMap. withoutAllKeys(LongIterable keys)
LongShortHashMap
LongShortHashMap. withoutAllKeys(LongIterable keys)
MutableLongBooleanMap
SynchronizedLongBooleanMap. withoutAllKeys(LongIterable keys)
MutableLongByteMap
SynchronizedLongByteMap. withoutAllKeys(LongIterable keys)
MutableLongCharMap
SynchronizedLongCharMap. withoutAllKeys(LongIterable keys)
MutableLongDoubleMap
SynchronizedLongDoubleMap. withoutAllKeys(LongIterable keys)
MutableLongFloatMap
SynchronizedLongFloatMap. withoutAllKeys(LongIterable keys)
MutableLongIntMap
SynchronizedLongIntMap. withoutAllKeys(LongIterable keys)
MutableLongLongMap
SynchronizedLongLongMap. withoutAllKeys(LongIterable keys)
MutableLongObjectMap<V>
SynchronizedLongObjectMap. withoutAllKeys(LongIterable keys)
MutableLongShortMap
SynchronizedLongShortMap. withoutAllKeys(LongIterable keys)
MutableLongBooleanMap
UnmodifiableLongBooleanMap. withoutAllKeys(LongIterable keys)
MutableLongByteMap
UnmodifiableLongByteMap. withoutAllKeys(LongIterable keys)
MutableLongCharMap
UnmodifiableLongCharMap. withoutAllKeys(LongIterable keys)
MutableLongDoubleMap
UnmodifiableLongDoubleMap. withoutAllKeys(LongIterable keys)
MutableLongFloatMap
UnmodifiableLongFloatMap. withoutAllKeys(LongIterable keys)
MutableLongIntMap
UnmodifiableLongIntMap. withoutAllKeys(LongIterable keys)
MutableLongLongMap
UnmodifiableLongLongMap. withoutAllKeys(LongIterable keys)
MutableLongObjectMap<V>
UnmodifiableLongObjectMap. withoutAllKeys(LongIterable keys)
MutableLongShortMap
UnmodifiableLongShortMap. withoutAllKeys(LongIterable keys)
Method parameters in org.eclipse.collections.impl.map.mutable.primitive with type arguments of type LongIterable Modifier and Type Method Description <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 LongIterable in org.eclipse.collections.impl.map.ordered.mutable
Method parameters in org.eclipse.collections.impl.map.ordered.mutable with type arguments of type LongIterable Modifier and Type Method Description <R extends MutableLongCollection>
RUnmodifiableMutableOrderedMap. flatCollectLong(Function<? super V,? extends LongIterable> function, R target)
-
Uses of LongIterable in org.eclipse.collections.impl.map.sorted.mutable
Method parameters in org.eclipse.collections.impl.map.sorted.mutable with type arguments of type LongIterable Modifier and Type Method Description <R extends MutableLongCollection>
RUnmodifiableTreeMap. flatCollectLong(Function<? super V,? extends LongIterable> function, R target)
-
Uses of LongIterable in org.eclipse.collections.impl.primitive
Classes in org.eclipse.collections.impl.primitive that implement LongIterable Modifier and Type Class Description class
AbstractLongIterable
This file was automatically generated from template file abstractPrimitiveIterable.stg.class
SynchronizedLongIterable
A synchronized view of a LongIterable.Fields in org.eclipse.collections.impl.primitive declared as LongIterable Modifier and Type Field Description private LongIterable
SynchronizedLongIterable. iterable
Methods in org.eclipse.collections.impl.primitive that return LongIterable Modifier and Type Method Description LongIterable
SynchronizedLongIterable. reject(LongPredicate predicate)
LongIterable
SynchronizedLongIterable. select(LongPredicate predicate)
Methods in org.eclipse.collections.impl.primitive that return types with arguments of type LongIterable Modifier and Type Method Description RichIterable<LongIterable>
SynchronizedLongIterable. chunk(int size)
Methods in org.eclipse.collections.impl.primitive with parameters of type LongIterable Modifier and Type Method Description boolean
SynchronizedLongIterable. containsAll(LongIterable source)
boolean
SynchronizedLongIterable. containsAny(LongIterable source)
boolean
SynchronizedLongIterable. containsNone(LongIterable source)
static SynchronizedLongIterable
SynchronizedLongIterable. of(LongIterable iterable)
This method will take a LongIterable and wrap it directly in a SynchronizedLongIterable.static SynchronizedLongIterable
SynchronizedLongIterable. of(LongIterable iterable, java.lang.Object lock)
This method will take a LongIterable and wrap it directly in a SynchronizedLongIterable.Constructors in org.eclipse.collections.impl.primitive with parameters of type LongIterable Constructor Description SynchronizedLongIterable(LongIterable iterable)
SynchronizedLongIterable(LongIterable iterable, java.lang.Object newLock)
-
Uses of LongIterable in org.eclipse.collections.impl.set.immutable.primitive
Classes in org.eclipse.collections.impl.set.immutable.primitive that implement LongIterable Modifier and Type Class Description class
AbstractImmutableLongSet
This file was automatically generated from template file abstractImmutablePrimitiveSet.stg.(package private) class
ImmutableLongEmptySet
ImmutableLongEmptySet is an optimization forImmutableLongSet
of size 0.(package private) class
ImmutableLongSingletonSet
ImmutableLongSingletonSet is an optimization forImmutableLongSet
of size 1.Methods in org.eclipse.collections.impl.set.immutable.primitive that return types with arguments of type LongIterable Modifier and Type Method Description RichIterable<LongIterable>
AbstractImmutableLongSet. chunk(int size)
RichIterable<LongIterable>
ImmutableLongEmptySet. chunk(int size)
RichIterable<LongIterable>
ImmutableLongSingletonSet. chunk(int size)
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type LongIterable Modifier and Type Method Description boolean
ImmutableLongEmptySet. containsAll(LongIterable source)
boolean
ImmutableLongSingletonSet. containsAll(LongIterable source)
ImmutableLongSet
AbstractImmutableLongSet. newWithAll(LongIterable elements)
ImmutableLongSet
ImmutableLongEmptySet. newWithAll(LongIterable elements)
ImmutableLongSet
ImmutableLongSingletonSet. newWithAll(LongIterable elements)
ImmutableLongSet
AbstractImmutableLongSet. newWithoutAll(LongIterable elements)
ImmutableLongSet
ImmutableLongEmptySet. newWithoutAll(LongIterable elements)
ImmutableLongSet
ImmutableLongSingletonSet. newWithoutAll(LongIterable elements)
ImmutableLongSet
ImmutableLongSetFactoryImpl. ofAll(LongIterable items)
ImmutableLongSet
ImmutableLongSetFactoryImpl. withAll(LongIterable items)
-
Uses of LongIterable in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement LongIterable Modifier and Type Class Description class
LongHashSet
This file was automatically generated from template file primitiveHashSet.stg.private static class
LongHashSet.ImmutableLongHashSet
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 that return types with arguments of type LongIterable Modifier and Type Method Description RichIterable<LongIterable>
LongHashSet. chunk(int size)
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type LongIterable Modifier and Type Method Description boolean
LongHashSet. addAll(LongIterable source)
static LongHashSet
LongHashSet. newSet(LongIterable source)
MutableLongSet
MutableLongSetFactoryImpl. ofAll(LongIterable items)
boolean
LongHashSet. removeAll(LongIterable source)
boolean
LongHashSet. retainAll(LongIterable source)
LongHashSet
LongHashSet. withAll(LongIterable elements)
MutableLongSet
MutableLongSetFactoryImpl. withAll(LongIterable items)
SynchronizedLongSet
SynchronizedLongSet. withAll(LongIterable elements)
UnmodifiableLongSet
UnmodifiableLongSet. withAll(LongIterable elements)
LongHashSet
LongHashSet. withoutAll(LongIterable elements)
SynchronizedLongSet
SynchronizedLongSet. withoutAll(LongIterable elements)
UnmodifiableLongSet
UnmodifiableLongSet. withoutAll(LongIterable elements)
Constructors in org.eclipse.collections.impl.set.mutable.primitive with parameters of type LongIterable Constructor Description LongHashSet(LongIterable elements)
-
Uses of LongIterable in org.eclipse.collections.impl.set.primitive
Classes in org.eclipse.collections.impl.set.primitive that implement LongIterable Modifier and Type Class Description class
AbstractLongSet
This file was automatically generated from template file abstractPrimitiveSet.stg. -
Uses of LongIterable in org.eclipse.collections.impl.stack.immutable
Method parameters in org.eclipse.collections.impl.stack.immutable with type arguments of type LongIterable Modifier and Type Method Description <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 LongIterable in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement LongIterable Modifier and Type Class Description (package private) class
ImmutableLongArrayStack
ImmutableLongArrayStack is the non-modifiable equivalent ofLongArrayStack
.(package private) class
ImmutableLongEmptyStack
ImmutableLongEmptyStack is an optimization forImmutableLongStack
of size 0.(package private) class
ImmutableLongSingletonStack
ImmutableLongSingletonStack is an optimization forImmutableLongStack
of size 1.Methods in org.eclipse.collections.impl.stack.immutable.primitive that return types with arguments of type LongIterable Modifier and Type Method Description RichIterable<LongIterable>
ImmutableLongEmptyStack. chunk(int size)
RichIterable<LongIterable>
ImmutableLongSingletonStack. chunk(int size)
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type LongIterable Modifier and Type Method Description boolean
ImmutableLongEmptyStack. containsAll(LongIterable source)
boolean
ImmutableLongSingletonStack. containsAll(LongIterable source)
static ImmutableLongArrayStack
ImmutableLongArrayStack. newStack(LongIterable iterable)
static ImmutableLongArrayStack
ImmutableLongArrayStack. newStackFromTopToBottom(LongIterable items)
ImmutableLongStack
ImmutableLongStackFactoryImpl. ofAll(LongIterable items)
ImmutableLongStack
ImmutableLongStackFactoryImpl. ofAllReversed(LongIterable items)
ImmutableLongStack
ImmutableLongStackFactoryImpl. withAll(LongIterable items)
ImmutableLongStack
ImmutableLongStackFactoryImpl. withAllReversed(LongIterable items)
-
Uses of LongIterable in org.eclipse.collections.impl.stack.mutable
Method parameters in org.eclipse.collections.impl.stack.mutable with type arguments of type LongIterable Modifier and Type Method Description <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 LongIterable in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement LongIterable Modifier and Type Class Description class
LongArrayStack
LongArrayStack is similar toArrayStack
, and is memory-optimized for long primitives.class
SynchronizedLongStack
A synchronized view of aMutableLongStack
.class
UnmodifiableLongStack
This file was automatically generated from template file unmodifiablePrimitiveStack.stg.Methods in org.eclipse.collections.impl.stack.mutable.primitive that return types with arguments of type LongIterable Modifier and Type Method Description RichIterable<LongIterable>
SynchronizedLongStack. chunk(int size)
RichIterable<LongIterable>
UnmodifiableLongStack. chunk(int size)
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type LongIterable Modifier and Type Method Description boolean
SynchronizedLongStack. containsAll(LongIterable source)
boolean
UnmodifiableLongStack. containsAll(LongIterable source)
static LongArrayStack
LongArrayStack. newStack(LongIterable items)
static LongArrayStack
LongArrayStack. newStackFromTopToBottom(LongIterable items)
MutableLongStack
MutableLongStackFactoryImpl. ofAll(LongIterable items)
MutableLongStack
MutableLongStackFactoryImpl. ofAllReversed(LongIterable items)
MutableLongStack
MutableLongStackFactoryImpl. withAll(LongIterable items)
MutableLongStack
MutableLongStackFactoryImpl. withAllReversed(LongIterable items)
-
Uses of LongIterable in org.eclipse.collections.impl.stack.primitive
Classes in org.eclipse.collections.impl.stack.primitive that implement LongIterable Modifier and Type Class Description class
AbstractLongStack
This file was automatically generated from template file abstractPrimitiveStack.stg.Methods in org.eclipse.collections.impl.stack.primitive that return types with arguments of type LongIterable Modifier and Type Method Description RichIterable<LongIterable>
AbstractLongStack. chunk(int size)
Methods in org.eclipse.collections.impl.stack.primitive with parameters of type LongIterable Modifier and Type Method Description boolean
AbstractLongStack. containsAll(LongIterable source)
-
Uses of LongIterable in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type LongIterable Modifier and Type Method Description static boolean
LongIterableIterate. allSatisfy(LongIterable iterable, LongPredicate predicate)
static boolean
LongIterableIterate. anySatisfy(LongIterable iterable, LongPredicate predicate)
static void
LongIterableIterate. appendString(LongIterable iterable, java.lang.Appendable appendable, java.lang.String start, java.lang.String separator, java.lang.String end)
static <V,R extends java.util.Collection<V>>
RLongIterableIterate. collect(LongIterable iterable, LongToObjectFunction<? extends V> function, R targetCollection)
static int
LongIterableIterate. count(LongIterable iterable, LongPredicate predicate)
static long
LongIterableIterate. detectIfNone(LongIterable iterable, LongPredicate predicate, long ifNone)
static void
LongIterableIterate. forEach(LongIterable iterable, LongProcedure procedure)
static <T> T
LongIterableIterate. injectInto(LongIterable iterable, T injectedValue, ObjectLongToObjectFunction<? super T,? extends T> function)
static boolean
LongIterableIterate. isEmpty(LongIterable iterable)
static long
LongIterableIterate. max(LongIterable iterable)
static long
LongIterableIterate. maxIfEmpty(LongIterable iterable, long ifEmpty)
static long
LongIterableIterate. min(LongIterable iterable)
static long
LongIterableIterate. minIfEmpty(LongIterable iterable, long ifEmpty)
static boolean
LongIterableIterate. noneSatisfy(LongIterable iterable, LongPredicate predicate)
static boolean
LongIterableIterate. notEmpty(LongIterable iterable)
static <R extends MutableLongCollection>
RLongIterableIterate. reject(LongIterable iterable, LongPredicate predicate, R targetCollection)
static <R extends MutableLongCollection>
RLongIterableIterate. select(LongIterable iterable, LongPredicate predicate, R targetCollection)
private static <T> java.lang.String
LongIterableIterate. stringValueOfItem(LongIterable iterable, T item)
static long
LongIterableIterate. sum(LongIterable iterable)
-
Uses of LongIterable in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type LongIterable Modifier and Type Method Description static LazyLongIterable
LazyLongIterate. adapt(LongIterable iterable)
Creates a deferred long iterable for the specified long iterable.static <V> LazyIterable<V>
LazyLongIterate. collect(LongIterable iterable, LongToObjectFunction<? extends V> function)
Creates a deferred transforming long iterable for the specified long iterable.static <V> LazyIterable<V>
LazyLongIterate. collectIf(LongIterable iterable, LongPredicate predicate, LongToObjectFunction<? extends V> function)
Creates a deferred filtering and transforming long iterable for the specified long iterable.static <V> LazyIterable<V>
LazyLongIterate. flatCollect(LongIterable iterable, LongToObjectFunction<? extends java.lang.Iterable<V>> function)
Creates a deferred transforming and flattening long iterable for the specified long iterable.static LazyLongIterable
LazyLongIterate. select(LongIterable iterable, LongPredicate predicate)
Creates a deferred filtering long iterable for the specified long iterable.static LazyLongIterable
LazyLongIterate. tap(LongIterable iterable, LongProcedure procedure)
Creates a deferred tap iterable for the specified iterable.
-