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 theMutableBiMapinterface.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollectioninterface.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 theMutableListinterface.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 theMutableMapinterface.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 theMutableSortedMapinterface.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 theImmutableStackinterface.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 theMutableStackinterface.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 interfaceLazyLongIterableThis file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return LongIterable Modifier and Type Method Description LongIterableRichIterable. collectLong(LongFunction<? super T> longFunction)Returns a new primitivelongiterable with the results of applying the specified function on each element of the source collection.LongIterableLongIterable. reject(LongPredicate predicate)Returns a new LongIterable with all of the elements in the LongIterable that return false for the specified predicate.LongIterableLongIterable. select(LongPredicate predicate)Returns a new LongIterable with all of the elements in the LongIterable that return true for the specified predicate.default LongIterableLongIterable. 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 booleanLongIterable. 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 booleanLongIterable. 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 booleanLongIterable. 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 interfaceImmutableLongBagThis file was automatically generated from template file immutablePrimitiveBag.stg.interfaceLongBagThis file was automatically generated from template file primitiveBag.stg.interfaceMutableLongBagThis 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 ImmutableLongBagImmutableLongBag. newWithAll(LongIterable elements)ImmutableLongBagImmutableLongBag. newWithoutAll(LongIterable elements)MutableLongBagMutableLongBag. withAll(LongIterable elements)MutableLongBagMutableLongBag. 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 interfaceImmutableLongCollectionThis file was automatically generated from template file immutablePrimitiveCollection.stg.interfaceMutableLongCollectionThis 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 booleanMutableLongCollection. addAll(LongIterable source)ImmutableLongCollectionImmutableLongCollection. newWithAll(LongIterable elements)ImmutableLongCollectionImmutableLongCollection. newWithoutAll(LongIterable elements)booleanMutableLongCollection. removeAll(LongIterable source)booleanMutableLongCollection. retainAll(LongIterable elements)MutableLongCollectionMutableLongCollection. withAll(LongIterable elements)MutableLongCollectionMutableLongCollection. 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 ImmutableLongBagImmutableLongBagFactory. ofAll(LongIterable items)MutableLongBagMutableLongBagFactory. ofAll(LongIterable items)ImmutableLongBagImmutableLongBagFactory. withAll(LongIterable items)MutableLongBagMutableLongBagFactory. 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 ImmutableLongListImmutableLongListFactory. ofAll(LongIterable items)MutableLongListMutableLongListFactory. ofAll(LongIterable items)ImmutableLongListImmutableLongListFactory. withAll(LongIterable items)MutableLongListMutableLongListFactory. 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 ImmutableLongSetImmutableLongSetFactory. ofAll(LongIterable items)MutableLongSetMutableLongSetFactory. ofAll(LongIterable items)ImmutableLongSetImmutableLongSetFactory. withAll(LongIterable items)MutableLongSetMutableLongSetFactory. 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 ImmutableLongStackImmutableLongStackFactory. ofAll(LongIterable items)MutableLongStackMutableLongStackFactory. ofAll(LongIterable items)ImmutableLongStackImmutableLongStackFactory. ofAllReversed(LongIterable items)MutableLongStackMutableLongStackFactory. ofAllReversed(LongIterable items)ImmutableLongStackImmutableLongStackFactory. withAll(LongIterable items)MutableLongStackMutableLongStackFactory. withAll(LongIterable items)ImmutableLongStackImmutableLongStackFactory. withAllReversed(LongIterable items)MutableLongStackMutableLongStackFactory. 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 interfaceImmutableLongListThis file was automatically generated from template file immutablePrimitiveList.stg.interfaceLongListThis file was automatically generated from template file primitiveList.stg.interfaceMutableLongListThis 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 booleanMutableLongList. addAllAtIndex(int index, LongIterable source)ImmutableLongListImmutableLongList. newWithAll(LongIterable elements)ImmutableLongListImmutableLongList. newWithoutAll(LongIterable elements)MutableLongListMutableLongList. withAll(LongIterable elements)MutableLongListMutableLongList. withoutAll(LongIterable elements)default ImmutableList<LongLongPair>ImmutableLongList. zipLong(LongIterable iterable)Returns anImmutableListformed from thisImmutableLongListand anotherLongListby combining corresponding elements in pairs.default ListIterable<LongLongPair>LongList. zipLong(LongIterable iterable)Returns aListIterableformed from thisLongListand anotherLongListby combining corresponding elements in pairs.default MutableList<LongLongPair>MutableLongList. zipLong(LongIterable iterable)Returns aMutableListformed from thisMutableLongListand anotherLongListby 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 interfaceByteLongMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceCharLongMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceDoubleLongMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceFloatLongMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceImmutableByteLongMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableCharLongMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableDoubleLongMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableFloatLongMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableIntLongMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableLongLongMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableObjectLongMap<K>This file was automatically generated from template file immutableObjectPrimitiveMap.stg.interfaceImmutableShortLongMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceIntLongMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceLongLongMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceLongValuesMapThis file was automatically generated from template file primitiveValuesMap.stg.interfaceMutableByteLongMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableCharLongMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableDoubleLongMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableFloatLongMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableIntLongMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableLongLongMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableLongValuesMapThis file was automatically generated from template file mutablePrimitiveValuesMap.stg.interfaceMutableObjectLongMap<K>This file was automatically generated from template file mutableObjectPrimitiveMap.stg.interfaceMutableShortLongMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceObjectLongMap<K>This file was automatically generated from template file objectPrimitiveMap.stg.interfaceShortLongMapThis 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 ImmutableLongBooleanMapImmutableLongBooleanMap. 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.ImmutableLongByteMapImmutableLongByteMap. 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.ImmutableLongCharMapImmutableLongCharMap. 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.ImmutableLongDoubleMapImmutableLongDoubleMap. 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.ImmutableLongFloatMapImmutableLongFloatMap. 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.ImmutableLongIntMapImmutableLongIntMap. 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.ImmutableLongLongMapImmutableLongLongMap. 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.ImmutableLongShortMapImmutableLongShortMap. 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.MutableLongBooleanMapMutableLongBooleanMap. withoutAllKeys(LongIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableLongByteMapMutableLongByteMap. withoutAllKeys(LongIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableLongCharMapMutableLongCharMap. withoutAllKeys(LongIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableLongDoubleMapMutableLongDoubleMap. withoutAllKeys(LongIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableLongFloatMapMutableLongFloatMap. withoutAllKeys(LongIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableLongIntMapMutableLongIntMap. withoutAllKeys(LongIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableLongLongMapMutableLongLongMap. 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.MutableLongShortMapMutableLongShortMap. 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 interfaceOrderedLongIterableThis file was automatically generated from template file orderedPrimitiveIterable.stg.interfaceReversibleLongIterableThis 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 interfaceImmutableLongSetThis file was automatically generated from template file immutablePrimitiveSet.stg.interfaceLongSetThis file was automatically generated from template file primitiveSet.stg.interfaceMutableLongSetThis 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 ImmutableLongSetImmutableLongSet. newWithAll(LongIterable elements)ImmutableLongSetImmutableLongSet. newWithoutAll(LongIterable elements)MutableLongSetMutableLongSet. withAll(LongIterable elements)MutableLongSetMutableLongSet. 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 interfaceImmutableLongStackThis file was automatically generated from template file immutablePrimitiveStack.stg.interfaceLongStackThis file was automatically generated from template file primitiveStack.stg.interfaceMutableLongStackThis 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 LongIterableUnmodifiableRichIterable. 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) classImmutableLongEmptyBagImmutableLongEmptyBag is an optimization forImmutableLongBagof size 0.(package private) classImmutableLongHashBagImmutableLongHashBag is the non-modifiable equivalent ofLongHashBag.(package private) classImmutableLongSingletonBagImmutableLongSingletonBag is an optimization forImmutableLongBagof 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 booleanImmutableLongEmptyBag. containsAll(LongIterable source)booleanImmutableLongHashBag. containsAll(LongIterable source)booleanImmutableLongSingletonBag. containsAll(LongIterable source)ImmutableLongBagImmutableLongEmptyBag. newWithAll(LongIterable elements)ImmutableLongBagImmutableLongHashBag. newWithAll(LongIterable elements)ImmutableLongBagImmutableLongSingletonBag. newWithAll(LongIterable elements)ImmutableLongBagImmutableLongEmptyBag. newWithoutAll(LongIterable elements)ImmutableLongBagImmutableLongHashBag. newWithoutAll(LongIterable elements)ImmutableLongBagImmutableLongSingletonBag. newWithoutAll(LongIterable elements)ImmutableLongBagImmutableLongBagFactoryImpl. ofAll(LongIterable items)ImmutableLongBagImmutableLongBagFactoryImpl. 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 classLongHashBagLongHashBag is similar toHashBag, and is memory-optimized for long primitives.classSynchronizedLongBagA synchronized view of aMutableLongBag.classUnmodifiableLongBagThis file was automatically generated from template file unmodifiablePrimitiveBag.stg.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 booleanLongHashBag. addAll(LongIterable source)static LongHashBagLongHashBag. newBag(LongIterable source)MutableLongBagMutableLongBagFactoryImpl. ofAll(LongIterable items)booleanLongHashBag. removeAll(LongIterable source)booleanLongHashBag. retainAll(LongIterable source)LongHashBagLongHashBag. withAll(LongIterable iterable)MutableLongBagMutableLongBagFactoryImpl. withAll(LongIterable items)SynchronizedLongBagSynchronizedLongBag. withAll(LongIterable elements)UnmodifiableLongBagUnmodifiableLongBag. withAll(LongIterable elements)LongHashBagLongHashBag. withoutAll(LongIterable iterable)SynchronizedLongBagSynchronizedLongBag. withoutAll(LongIterable elements)UnmodifiableLongBagUnmodifiableLongBag. 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 LongIterableUnmodifiableBiMap. 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 LongIterableAbstractSynchronizedRichIterable. 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 classAbstractSynchronizedLongCollectionThis file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.classAbstractUnmodifiableLongCollectionThis file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.classSynchronizedLongCollectionThis file was automatically generated from template file synchronizedPrimitiveCollection.stg.classUnmodifiableLongCollectionThis file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Methods in org.eclipse.collections.impl.collection.mutable.primitive that return 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 booleanAbstractSynchronizedLongCollection. addAll(LongIterable source)booleanAbstractUnmodifiableLongCollection. addAll(LongIterable source)booleanAbstractSynchronizedLongCollection. containsAll(LongIterable source)booleanAbstractUnmodifiableLongCollection. containsAll(LongIterable source)booleanAbstractSynchronizedLongCollection. containsAny(LongIterable source)booleanAbstractUnmodifiableLongCollection. containsAny(LongIterable source)booleanAbstractSynchronizedLongCollection. containsNone(LongIterable source)booleanAbstractUnmodifiableLongCollection. containsNone(LongIterable source)booleanAbstractSynchronizedLongCollection. removeAll(LongIterable source)booleanAbstractUnmodifiableLongCollection. removeAll(LongIterable source)booleanAbstractSynchronizedLongCollection. retainAll(LongIterable source)booleanAbstractUnmodifiableLongCollection. retainAll(LongIterable source)MutableLongCollectionAbstractSynchronizedLongCollection. withAll(LongIterable elements)MutableLongCollectionAbstractUnmodifiableLongCollection. withAll(LongIterable elements)MutableLongCollectionAbstractSynchronizedLongCollection. withoutAll(LongIterable elements)MutableLongCollectionAbstractUnmodifiableLongCollection. 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 classAbstractLazyLongIterableThis file was automatically generated from template file abstractLazyPrimitiveIterable.stg.classCollectBooleanToLongIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectByteToLongIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectCharToLongIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectDoubleToLongIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectFloatToLongIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectIntToLongIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectLongIterable<T>This file was automatically generated from template file collectPrimitiveIterable.stg.classCollectLongToLongIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectShortToLongIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classLazyLongIterableAdapterThis file was automatically generated from template file lazyPrimitiveIterableAdapter.stg.classReverseLongIterableThis file was automatically generated from template file reversePrimitiveIterable.stg.classSelectLongIterableThis file was automatically generated from template file selectPrimitiveIterable.stg.classTapLongIterableThis 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 LongIterableChunkLongIterable. adaptedprivate LongIterableTapLongIterable. adaptedprivate LongIterableLazyLongIterableAdapter. delegateprivate LongIterableSelectLongIterable. delegateprivate LongIterableCollectLongToBooleanIterable. iterableprivate LongIterableCollectLongToByteIterable. iterableprivate LongIterableCollectLongToCharIterable. iterableprivate LongIterableCollectLongToDoubleIterable. iterableprivate LongIterableCollectLongToFloatIterable. iterableprivate LongIterableCollectLongToIntIterable. iterableprivate LongIterableCollectLongToLongIterable. iterableprivate LongIterableCollectLongToObjectIterable. iterableprivate LongIterableCollectLongToShortIterable. iterableprivate LongIterableFlatCollectLongToObjectIterable. iterableMethods in org.eclipse.collections.impl.lazy.primitive that return LongIterable Modifier and Type Method Description LongIterableChunkLongIterable.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 booleanAbstractLazyLongIterable. containsAll(LongIterable source)booleanCollectLongIterable. containsAll(LongIterable source)booleanLazyLongIterableAdapter. containsAll(LongIterable source)booleanReverseLongIterable. containsAll(LongIterable source)booleanSelectLongIterable. containsAll(LongIterable source)Method parameters in org.eclipse.collections.impl.lazy.primitive with type arguments of type LongIterable Modifier and Type Method Description voidChunkLongIterable. 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) classImmutableLongArrayListImmutableLongArrayList is the non-modifiable equivalent ofLongArrayList.(package private) classImmutableLongEmptyListImmutableLongEmptyList is an optimization forImmutableLongListof size 0.(package private) classImmutableLongSingletonListImmutableLongSingletonList is an optimization forImmutableLongListof 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 booleanImmutableLongArrayList. containsAll(LongIterable source)booleanImmutableLongEmptyList. containsAll(LongIterable source)booleanImmutableLongSingletonList. containsAll(LongIterable source)static ImmutableLongArrayListImmutableLongArrayList. newList(LongIterable iterable)ImmutableLongListImmutableLongArrayList. newWithAll(LongIterable elements)ImmutableLongListImmutableLongEmptyList. newWithAll(LongIterable elements)ImmutableLongListImmutableLongSingletonList. newWithAll(LongIterable elements)ImmutableLongListImmutableLongArrayList. newWithoutAll(LongIterable elements)ImmutableLongListImmutableLongEmptyList. newWithoutAll(LongIterable elements)ImmutableLongListImmutableLongSingletonList. newWithoutAll(LongIterable elements)ImmutableLongListImmutableLongListFactoryImpl. ofAll(LongIterable items)ImmutableLongListImmutableLongListFactoryImpl. 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 classLongArrayListLongArrayList is similar to FastList, and is memory-optimized for long primitives.classSynchronizedLongListA synchronized view of aMutableLongList.classUnmodifiableLongListThis file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive 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 booleanLongArrayList. addAll(LongIterable source)booleanLongArrayList. addAllAtIndex(int index, LongIterable source)booleanSynchronizedLongList. addAllAtIndex(int index, LongIterable source)booleanUnmodifiableLongList. addAllAtIndex(int index, LongIterable source)static LongArrayListLongArrayList. newList(LongIterable source)MutableLongListMutableLongListFactoryImpl. ofAll(LongIterable items)booleanLongArrayList. removeAll(LongIterable source)booleanLongArrayList. retainAll(LongIterable source)LongArrayListLongArrayList. withAll(LongIterable elements)MutableLongListMutableLongListFactoryImpl. withAll(LongIterable items)SynchronizedLongListSynchronizedLongList. withAll(LongIterable elements)UnmodifiableLongListUnmodifiableLongList. withAll(LongIterable elements)LongArrayListLongArrayList. withoutAll(LongIterable elements)SynchronizedLongListSynchronizedLongList. withoutAll(LongIterable elements)UnmodifiableLongListUnmodifiableLongList. 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 classLongIntervalAn 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 booleanLongInterval. containsAll(LongIterable source)ImmutableLongListLongInterval. newWithAll(LongIterable elements)ImmutableLongListLongInterval. 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 classAbstractImmutableObjectLongMap<V>This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) classImmutableByteLongEmptyMapImmutableByteLongEmptyMap is an optimization forImmutableByteLongMapof size 0.(package private) classImmutableByteLongHashMapImmutableByteLongHashMap is the non-modifiable equivalent ofByteLongHashMap.(package private) classImmutableByteLongSingletonMapImmutableByteLongSingletonMap is an optimization forImmutableByteLongMapof size 1.(package private) classImmutableCharLongEmptyMapImmutableCharLongEmptyMap is an optimization forImmutableCharLongMapof size 0.(package private) classImmutableCharLongHashMapImmutableCharLongHashMap is the non-modifiable equivalent ofCharLongHashMap.(package private) classImmutableCharLongSingletonMapImmutableCharLongSingletonMap is an optimization forImmutableCharLongMapof size 1.(package private) classImmutableDoubleLongEmptyMapImmutableDoubleLongEmptyMap is an optimization forImmutableDoubleLongMapof size 0.(package private) classImmutableDoubleLongHashMapImmutableDoubleLongHashMap is the non-modifiable equivalent ofDoubleLongHashMap.(package private) classImmutableDoubleLongSingletonMapImmutableDoubleLongSingletonMap is an optimization forImmutableDoubleLongMapof size 1.(package private) classImmutableFloatLongEmptyMapImmutableFloatLongEmptyMap is an optimization forImmutableFloatLongMapof size 0.(package private) classImmutableFloatLongHashMapImmutableFloatLongHashMap is the non-modifiable equivalent ofFloatLongHashMap.(package private) classImmutableFloatLongSingletonMapImmutableFloatLongSingletonMap is an optimization forImmutableFloatLongMapof size 1.(package private) classImmutableIntLongEmptyMapImmutableIntLongEmptyMap is an optimization forImmutableIntLongMapof size 0.(package private) classImmutableIntLongHashMapImmutableIntLongHashMap is the non-modifiable equivalent ofIntLongHashMap.(package private) classImmutableIntLongSingletonMapImmutableIntLongSingletonMap is an optimization forImmutableIntLongMapof size 1.(package private) classImmutableLongLongEmptyMapImmutableLongLongEmptyMap is an optimization forImmutableLongLongMapof size 0.(package private) classImmutableLongLongHashMapImmutableLongLongHashMap is the non-modifiable equivalent ofLongLongHashMap.(package private) classImmutableLongLongSingletonMapImmutableLongLongSingletonMap is an optimization forImmutableLongLongMapof size 1.(package private) classImmutableObjectLongEmptyMap<K>ImmutableObjectLongEmptyMap is an optimization forImmutableObjectLongMapof size 0.(package private) classImmutableObjectLongHashMap<K>ImmutableObjectLongHashMap is the non-modifiable equivalent ofObjectLongHashMap.(package private) classImmutableObjectLongSingletonMap<K>ImmutableObjectLongSingletonMap is an optimization forImmutableObjectLongMapof size 1.(package private) classImmutableShortLongEmptyMapImmutableShortLongEmptyMap is an optimization forImmutableShortLongMapof size 0.(package private) classImmutableShortLongHashMapImmutableShortLongHashMap is the non-modifiable equivalent ofShortLongHashMap.(package private) classImmutableShortLongSingletonMapImmutableShortLongSingletonMap is an optimization forImmutableShortLongMapof 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 booleanImmutableByteLongEmptyMap. containsAll(LongIterable source)booleanImmutableByteLongHashMap. containsAll(LongIterable source)booleanImmutableByteLongSingletonMap. containsAll(LongIterable source)booleanImmutableCharLongEmptyMap. containsAll(LongIterable source)booleanImmutableCharLongHashMap. containsAll(LongIterable source)booleanImmutableCharLongSingletonMap. containsAll(LongIterable source)booleanImmutableDoubleLongEmptyMap. containsAll(LongIterable source)booleanImmutableDoubleLongHashMap. containsAll(LongIterable source)booleanImmutableDoubleLongSingletonMap. containsAll(LongIterable source)booleanImmutableFloatLongEmptyMap. containsAll(LongIterable source)booleanImmutableFloatLongHashMap. containsAll(LongIterable source)booleanImmutableFloatLongSingletonMap. containsAll(LongIterable source)booleanImmutableIntLongEmptyMap. containsAll(LongIterable source)booleanImmutableIntLongHashMap. containsAll(LongIterable source)booleanImmutableIntLongSingletonMap. containsAll(LongIterable source)booleanImmutableLongLongEmptyMap. containsAll(LongIterable source)booleanImmutableLongLongHashMap. containsAll(LongIterable source)booleanImmutableLongLongSingletonMap. containsAll(LongIterable source)booleanImmutableObjectLongEmptyMap. containsAll(LongIterable source)booleanImmutableObjectLongHashMap. containsAll(LongIterable source)booleanImmutableObjectLongSingletonMap. containsAll(LongIterable source)booleanImmutableShortLongEmptyMap. containsAll(LongIterable source)booleanImmutableShortLongHashMap. containsAll(LongIterable source)booleanImmutableShortLongSingletonMap. containsAll(LongIterable source)ImmutableLongBooleanMapImmutableLongBooleanEmptyMap. newWithoutAllKeys(LongIterable keys)ImmutableLongBooleanMapImmutableLongBooleanHashMap. newWithoutAllKeys(LongIterable keys)ImmutableLongBooleanMapImmutableLongBooleanSingletonMap. newWithoutAllKeys(LongIterable keys)ImmutableLongByteMapImmutableLongByteEmptyMap. newWithoutAllKeys(LongIterable keys)ImmutableLongByteMapImmutableLongByteHashMap. newWithoutAllKeys(LongIterable keys)ImmutableLongByteMapImmutableLongByteSingletonMap. newWithoutAllKeys(LongIterable keys)ImmutableLongCharMapImmutableLongCharEmptyMap. newWithoutAllKeys(LongIterable keys)ImmutableLongCharMapImmutableLongCharHashMap. newWithoutAllKeys(LongIterable keys)ImmutableLongCharMapImmutableLongCharSingletonMap. newWithoutAllKeys(LongIterable keys)ImmutableLongDoubleMapImmutableLongDoubleEmptyMap. newWithoutAllKeys(LongIterable keys)ImmutableLongDoubleMapImmutableLongDoubleHashMap. newWithoutAllKeys(LongIterable keys)ImmutableLongDoubleMapImmutableLongDoubleSingletonMap. newWithoutAllKeys(LongIterable keys)ImmutableLongFloatMapImmutableLongFloatEmptyMap. newWithoutAllKeys(LongIterable keys)ImmutableLongFloatMapImmutableLongFloatHashMap. newWithoutAllKeys(LongIterable keys)ImmutableLongFloatMapImmutableLongFloatSingletonMap. newWithoutAllKeys(LongIterable keys)ImmutableLongIntMapImmutableLongIntEmptyMap. newWithoutAllKeys(LongIterable keys)ImmutableLongIntMapImmutableLongIntHashMap. newWithoutAllKeys(LongIterable keys)ImmutableLongIntMapImmutableLongIntSingletonMap. newWithoutAllKeys(LongIterable keys)ImmutableLongLongMapImmutableLongLongEmptyMap. newWithoutAllKeys(LongIterable keys)ImmutableLongLongMapImmutableLongLongHashMap. newWithoutAllKeys(LongIterable keys)ImmutableLongLongMapImmutableLongLongSingletonMap. newWithoutAllKeys(LongIterable keys)ImmutableLongObjectMap<V>ImmutableLongObjectEmptyMap. newWithoutAllKeys(LongIterable keys)ImmutableLongObjectMap<V>ImmutableLongObjectHashMap. newWithoutAllKeys(LongIterable keys)ImmutableLongObjectMap<V>ImmutableLongObjectSingletonMap. newWithoutAllKeys(LongIterable keys)ImmutableLongShortMapImmutableLongShortEmptyMap. newWithoutAllKeys(LongIterable keys)ImmutableLongShortMapImmutableLongShortHashMap. newWithoutAllKeys(LongIterable keys)ImmutableLongShortMapImmutableLongShortSingletonMap. 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 classAbstractMutableLongKeySetThis file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.classAbstractMutableLongValuesMapThis file was automatically generated from template file abstractMutablePrimitiveValuesMap.stg.protected classAbstractMutableLongValuesMap.AbstractLongValuesCollectionclassByteLongHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classByteLongHashMap.ValuesCollectionclassCharLongHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classCharLongHashMap.ValuesCollectionclassDoubleLongHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classDoubleLongHashMap.ValuesCollectionclassFloatLongHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classFloatLongHashMap.ValuesCollection(package private) classImmutableLongLongMapKeySetThis file was automatically generated from template file immutablePrimitivePrimitiveMapKeySet.stg(package private) classImmutableLongMapKeySetThis file was automatically generated from template file immutablePrimitiveMapKeySet.stgclassIntLongHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classIntLongHashMap.ValuesCollectionprivate classLongBooleanHashMap.KeySetprivate classLongBooleanHashMap.KeysViewprivate classLongByteHashMap.KeySetprivate classLongByteHashMap.KeysViewprivate classLongCharHashMap.KeySetprivate classLongCharHashMap.KeysViewprivate classLongDoubleHashMap.KeySetprivate classLongDoubleHashMap.KeysViewprivate classLongFloatHashMap.KeySetprivate classLongFloatHashMap.KeysViewprivate classLongIntHashMap.KeySetprivate classLongIntHashMap.KeysViewclassLongLongHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classLongLongHashMap.KeySetprivate classLongLongHashMap.KeysViewprivate classLongLongHashMap.ValuesCollectionprivate classLongObjectHashMap.KeySetprivate classLongObjectHashMap.KeysViewprivate classLongShortHashMap.KeySetprivate classLongShortHashMap.KeysViewclassObjectLongHashMap<K>This file was automatically generated from template file objectPrimitiveHashMap.stg.private classObjectLongHashMap.ValuesCollectionclassObjectLongHashMapWithHashingStrategy<K>This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.private classObjectLongHashMapWithHashingStrategy.ValuesCollectionclassShortLongHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classShortLongHashMap.ValuesCollectionclassSynchronizedByteLongMapA synchronized view of aMutableByteLongMap.classSynchronizedCharLongMapA synchronized view of aMutableCharLongMap.classSynchronizedDoubleLongMapA synchronized view of aMutableDoubleLongMap.classSynchronizedFloatLongMapA synchronized view of aMutableFloatLongMap.classSynchronizedIntLongMapA synchronized view of aMutableIntLongMap.classSynchronizedLongLongMapA synchronized view of aMutableLongLongMap.classSynchronizedObjectLongMap<K>A synchronized view of aMutableObjectLongMap.classSynchronizedShortLongMapA synchronized view of aMutableShortLongMap.classUnmodifiableByteLongMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableCharLongMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableDoubleLongMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableFloatLongMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableIntLongMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableLongLongMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableObjectLongMap<K>This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.classUnmodifiableShortLongMapThis 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 booleanAbstractMutableLongKeySet. addAll(LongIterable source)booleanAbstractMutableLongValuesMap.AbstractLongValuesCollection. addAll(LongIterable source)booleanObjectLongHashMap.ValuesCollection. addAll(LongIterable source)booleanObjectLongHashMapWithHashingStrategy.ValuesCollection. addAll(LongIterable source)booleanAbstractMutableLongKeySet. containsAll(LongIterable source)booleanAbstractMutableLongValuesMap.AbstractLongValuesCollection. containsAll(LongIterable source)booleanAbstractMutableLongValuesMap. containsAll(LongIterable source)booleanLongBooleanHashMap.KeysView. containsAll(LongIterable source)booleanObjectLongHashMap. containsAll(LongIterable source)booleanObjectLongHashMap.ValuesCollection. containsAll(LongIterable source)booleanObjectLongHashMapWithHashingStrategy. containsAll(LongIterable source)booleanObjectLongHashMapWithHashingStrategy.ValuesCollection. containsAll(LongIterable source)booleanSynchronizedByteLongMap. containsAll(LongIterable source)booleanSynchronizedCharLongMap. containsAll(LongIterable source)booleanSynchronizedDoubleLongMap. containsAll(LongIterable source)booleanSynchronizedFloatLongMap. containsAll(LongIterable source)booleanSynchronizedIntLongMap. containsAll(LongIterable source)booleanSynchronizedLongLongMap. containsAll(LongIterable source)booleanSynchronizedObjectLongMap. containsAll(LongIterable source)booleanSynchronizedShortLongMap. containsAll(LongIterable source)booleanUnmodifiableByteLongMap. containsAll(LongIterable source)booleanUnmodifiableCharLongMap. containsAll(LongIterable source)booleanUnmodifiableDoubleLongMap. containsAll(LongIterable source)booleanUnmodifiableFloatLongMap. containsAll(LongIterable source)booleanUnmodifiableIntLongMap. containsAll(LongIterable source)booleanUnmodifiableLongLongMap. containsAll(LongIterable source)booleanUnmodifiableObjectLongMap. containsAll(LongIterable source)booleanUnmodifiableShortLongMap. containsAll(LongIterable source)booleanAbstractMutableLongKeySet. removeAll(LongIterable source)booleanAbstractMutableLongValuesMap.AbstractLongValuesCollection. removeAll(LongIterable source)booleanObjectLongHashMap.ValuesCollection. removeAll(LongIterable source)booleanObjectLongHashMapWithHashingStrategy.ValuesCollection. removeAll(LongIterable source)booleanByteLongHashMap.ValuesCollection. retainAll(LongIterable source)booleanCharLongHashMap.ValuesCollection. retainAll(LongIterable source)booleanDoubleLongHashMap.ValuesCollection. retainAll(LongIterable source)booleanFloatLongHashMap.ValuesCollection. retainAll(LongIterable source)booleanIntLongHashMap.ValuesCollection. retainAll(LongIterable source)booleanLongBooleanHashMap.KeySet. retainAll(LongIterable source)booleanLongByteHashMap.KeySet. retainAll(LongIterable source)booleanLongCharHashMap.KeySet. retainAll(LongIterable source)booleanLongDoubleHashMap.KeySet. retainAll(LongIterable source)booleanLongFloatHashMap.KeySet. retainAll(LongIterable source)booleanLongIntHashMap.KeySet. retainAll(LongIterable source)booleanLongLongHashMap.KeySet. retainAll(LongIterable source)booleanLongLongHashMap.ValuesCollection. retainAll(LongIterable source)booleanLongObjectHashMap.KeySet. retainAll(LongIterable source)booleanLongShortHashMap.KeySet. retainAll(LongIterable source)booleanObjectLongHashMap.ValuesCollection. retainAll(LongIterable source)booleanObjectLongHashMapWithHashingStrategy.ValuesCollection. retainAll(LongIterable source)booleanShortLongHashMap.ValuesCollection. retainAll(LongIterable source)MutableLongSetAbstractMutableLongKeySet. withAll(LongIterable elements)MutableLongCollectionAbstractMutableLongValuesMap.AbstractLongValuesCollection. withAll(LongIterable elements)MutableLongCollectionObjectLongHashMap.ValuesCollection. withAll(LongIterable elements)MutableLongCollectionObjectLongHashMapWithHashingStrategy.ValuesCollection. withAll(LongIterable elements)MutableLongSetAbstractMutableLongKeySet. withoutAll(LongIterable elements)MutableLongCollectionAbstractMutableLongValuesMap.AbstractLongValuesCollection. withoutAll(LongIterable elements)MutableLongCollectionObjectLongHashMap.ValuesCollection. withoutAll(LongIterable elements)MutableLongCollectionObjectLongHashMapWithHashingStrategy.ValuesCollection. withoutAll(LongIterable elements)LongBooleanHashMapLongBooleanHashMap. withoutAllKeys(LongIterable keys)LongByteHashMapLongByteHashMap. withoutAllKeys(LongIterable keys)LongCharHashMapLongCharHashMap. withoutAllKeys(LongIterable keys)LongDoubleHashMapLongDoubleHashMap. withoutAllKeys(LongIterable keys)LongFloatHashMapLongFloatHashMap. withoutAllKeys(LongIterable keys)LongIntHashMapLongIntHashMap. withoutAllKeys(LongIterable keys)LongLongHashMapLongLongHashMap. withoutAllKeys(LongIterable keys)MutableLongObjectMap<V>LongObjectHashMap. withoutAllKeys(LongIterable keys)LongShortHashMapLongShortHashMap. withoutAllKeys(LongIterable keys)MutableLongBooleanMapSynchronizedLongBooleanMap. withoutAllKeys(LongIterable keys)MutableLongByteMapSynchronizedLongByteMap. withoutAllKeys(LongIterable keys)MutableLongCharMapSynchronizedLongCharMap. withoutAllKeys(LongIterable keys)MutableLongDoubleMapSynchronizedLongDoubleMap. withoutAllKeys(LongIterable keys)MutableLongFloatMapSynchronizedLongFloatMap. withoutAllKeys(LongIterable keys)MutableLongIntMapSynchronizedLongIntMap. withoutAllKeys(LongIterable keys)MutableLongLongMapSynchronizedLongLongMap. withoutAllKeys(LongIterable keys)MutableLongObjectMap<V>SynchronizedLongObjectMap. withoutAllKeys(LongIterable keys)MutableLongShortMapSynchronizedLongShortMap. withoutAllKeys(LongIterable keys)MutableLongBooleanMapUnmodifiableLongBooleanMap. withoutAllKeys(LongIterable keys)MutableLongByteMapUnmodifiableLongByteMap. withoutAllKeys(LongIterable keys)MutableLongCharMapUnmodifiableLongCharMap. withoutAllKeys(LongIterable keys)MutableLongDoubleMapUnmodifiableLongDoubleMap. withoutAllKeys(LongIterable keys)MutableLongFloatMapUnmodifiableLongFloatMap. withoutAllKeys(LongIterable keys)MutableLongIntMapUnmodifiableLongIntMap. withoutAllKeys(LongIterable keys)MutableLongLongMapUnmodifiableLongLongMap. withoutAllKeys(LongIterable keys)MutableLongObjectMap<V>UnmodifiableLongObjectMap. withoutAllKeys(LongIterable keys)MutableLongShortMapUnmodifiableLongShortMap. 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 classAbstractLongIterableThis file was automatically generated from template file abstractPrimitiveIterable.stg.classSynchronizedLongIterableA synchronized view of a LongIterable.Fields in org.eclipse.collections.impl.primitive declared as LongIterable Modifier and Type Field Description private LongIterableSynchronizedLongIterable. iterableMethods in org.eclipse.collections.impl.primitive that return LongIterable Modifier and Type Method Description LongIterableSynchronizedLongIterable. reject(LongPredicate predicate)LongIterableSynchronizedLongIterable. 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 booleanSynchronizedLongIterable. containsAll(LongIterable source)booleanSynchronizedLongIterable. containsAny(LongIterable source)booleanSynchronizedLongIterable. containsNone(LongIterable source)static SynchronizedLongIterableSynchronizedLongIterable. of(LongIterable iterable)This method will take a LongIterable and wrap it directly in a SynchronizedLongIterable.static SynchronizedLongIterableSynchronizedLongIterable. 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 classAbstractImmutableLongSetThis file was automatically generated from template file abstractImmutablePrimitiveSet.stg.(package private) classImmutableLongEmptySetImmutableLongEmptySet is an optimization forImmutableLongSetof size 0.(package private) classImmutableLongSingletonSetImmutableLongSingletonSet is an optimization forImmutableLongSetof 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 booleanImmutableLongEmptySet. containsAll(LongIterable source)booleanImmutableLongSingletonSet. containsAll(LongIterable source)ImmutableLongSetAbstractImmutableLongSet. newWithAll(LongIterable elements)ImmutableLongSetImmutableLongEmptySet. newWithAll(LongIterable elements)ImmutableLongSetImmutableLongSingletonSet. newWithAll(LongIterable elements)ImmutableLongSetAbstractImmutableLongSet. newWithoutAll(LongIterable elements)ImmutableLongSetImmutableLongEmptySet. newWithoutAll(LongIterable elements)ImmutableLongSetImmutableLongSingletonSet. newWithoutAll(LongIterable elements)ImmutableLongSetImmutableLongSetFactoryImpl. ofAll(LongIterable items)ImmutableLongSetImmutableLongSetFactoryImpl. 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 classLongHashSetThis file was automatically generated from template file primitiveHashSet.stg.private static classLongHashSet.ImmutableLongHashSetclassSynchronizedLongSetA synchronized view of aMutableLongSet.classUnmodifiableLongSetThis 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 booleanLongHashSet. addAll(LongIterable source)static LongHashSetLongHashSet. newSet(LongIterable source)MutableLongSetMutableLongSetFactoryImpl. ofAll(LongIterable items)booleanLongHashSet. removeAll(LongIterable source)booleanLongHashSet. retainAll(LongIterable source)LongHashSetLongHashSet. withAll(LongIterable elements)MutableLongSetMutableLongSetFactoryImpl. withAll(LongIterable items)SynchronizedLongSetSynchronizedLongSet. withAll(LongIterable elements)UnmodifiableLongSetUnmodifiableLongSet. withAll(LongIterable elements)LongHashSetLongHashSet. withoutAll(LongIterable elements)SynchronizedLongSetSynchronizedLongSet. withoutAll(LongIterable elements)UnmodifiableLongSetUnmodifiableLongSet. 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 classAbstractLongSetThis 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) classImmutableLongArrayStackImmutableLongArrayStack is the non-modifiable equivalent ofLongArrayStack.(package private) classImmutableLongEmptyStackImmutableLongEmptyStack is an optimization forImmutableLongStackof size 0.(package private) classImmutableLongSingletonStackImmutableLongSingletonStack is an optimization forImmutableLongStackof 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 booleanImmutableLongEmptyStack. containsAll(LongIterable source)booleanImmutableLongSingletonStack. containsAll(LongIterable source)static ImmutableLongArrayStackImmutableLongArrayStack. newStack(LongIterable iterable)static ImmutableLongArrayStackImmutableLongArrayStack. newStackFromTopToBottom(LongIterable items)ImmutableLongStackImmutableLongStackFactoryImpl. ofAll(LongIterable items)ImmutableLongStackImmutableLongStackFactoryImpl. ofAllReversed(LongIterable items)ImmutableLongStackImmutableLongStackFactoryImpl. withAll(LongIterable items)ImmutableLongStackImmutableLongStackFactoryImpl. 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 classLongArrayStackLongArrayStack is similar toArrayStack, and is memory-optimized for long primitives.classSynchronizedLongStackA synchronized view of aMutableLongStack.classUnmodifiableLongStackThis 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 booleanSynchronizedLongStack. containsAll(LongIterable source)booleanUnmodifiableLongStack. containsAll(LongIterable source)static LongArrayStackLongArrayStack. newStack(LongIterable items)static LongArrayStackLongArrayStack. newStackFromTopToBottom(LongIterable items)MutableLongStackMutableLongStackFactoryImpl. ofAll(LongIterable items)MutableLongStackMutableLongStackFactoryImpl. ofAllReversed(LongIterable items)MutableLongStackMutableLongStackFactoryImpl. withAll(LongIterable items)MutableLongStackMutableLongStackFactoryImpl. 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 classAbstractLongStackThis 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 booleanAbstractLongStack. 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 booleanLongIterableIterate. allSatisfy(LongIterable iterable, LongPredicate predicate)static booleanLongIterableIterate. anySatisfy(LongIterable iterable, LongPredicate predicate)static voidLongIterableIterate. 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 intLongIterableIterate. count(LongIterable iterable, LongPredicate predicate)static longLongIterableIterate. detectIfNone(LongIterable iterable, LongPredicate predicate, long ifNone)static voidLongIterableIterate. forEach(LongIterable iterable, LongProcedure procedure)static <T> TLongIterableIterate. injectInto(LongIterable iterable, T injectedValue, ObjectLongToObjectFunction<? super T,? extends T> function)static booleanLongIterableIterate. isEmpty(LongIterable iterable)static longLongIterableIterate. max(LongIterable iterable)static longLongIterableIterate. maxIfEmpty(LongIterable iterable, long ifEmpty)static longLongIterableIterate. min(LongIterable iterable)static longLongIterableIterate. minIfEmpty(LongIterable iterable, long ifEmpty)static booleanLongIterableIterate. noneSatisfy(LongIterable iterable, LongPredicate predicate)static booleanLongIterableIterate. 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.StringLongIterableIterate. stringValueOfItem(LongIterable iterable, T item)static longLongIterableIterate. 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 LazyLongIterableLazyLongIterate. 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 LazyLongIterableLazyLongIterate. select(LongIterable iterable, LongPredicate predicate)Creates a deferred filtering long iterable for the specified long iterable.static LazyLongIterableLazyLongIterate. tap(LongIterable iterable, LongProcedure procedure)Creates a deferred tap iterable for the specified iterable.
-