Uses of Interface
org.eclipse.collections.api.ShortIterable
| 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 | |
| org.eclipse.collections.api.factory.stack.primitive | |
| 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 the
MutableBiMap interface. |
| org.eclipse.collections.impl.collection | |
| org.eclipse.collections.impl.collection.mutable |
This package contains implementations of the
MutableCollection interface. |
| org.eclipse.collections.impl.collection.mutable.primitive |
This package contains implementations of the mutable primitive collection interfaces.
|
| org.eclipse.collections.impl.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 the
MutableList interface. |
| org.eclipse.collections.impl.list.mutable.primitive |
This package contains implementations of the mutable primitive list interfaces.
|
| org.eclipse.collections.impl.map.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 the
MutableMap interface. |
| org.eclipse.collections.impl.map.mutable.primitive |
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
|
| org.eclipse.collections.impl.map.ordered.mutable | |
| org.eclipse.collections.impl.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
| org.eclipse.collections.impl.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.primitive |
This package contains implementations of the immutable primitive stack interfaces.
|
| org.eclipse.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack 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 ShortIterable in org.eclipse.collections.api
Subinterfaces of ShortIterable in org.eclipse.collections.api Modifier and Type Interface Description interfaceLazyShortIterableThis file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return ShortIterable Modifier and Type Method Description ShortIterableRichIterable. collectShort(ShortFunction<? super T> shortFunction)Returns a new primitiveshortiterable with the results of applying the specified function on each element of the source collection.ShortIterableShortIterable. reject(ShortPredicate predicate)Returns a new ShortIterable with all of the elements in the ShortIterable that return false for the specified predicate.ShortIterableShortIterable. select(ShortPredicate predicate)Returns a new ShortIterable with all of the elements in the ShortIterable that return true for the specified predicate.default ShortIterableShortIterable. tap(ShortProcedure procedure)Methods in org.eclipse.collections.api that return types with arguments of type ShortIterable Modifier and Type Method Description default RichIterable<ShortIterable>ShortIterable. chunk(int size)Partitions elements in fixed size chunks.Methods in org.eclipse.collections.api with parameters of type ShortIterable Modifier and Type Method Description booleanShortIterable. containsAll(ShortIterable source)Returns true if the all of the values specified in the source ShortIterable are contained in the ShortIterable, and false if they are not.Method parameters in org.eclipse.collections.api with type arguments of type ShortIterable Modifier and Type Method Description default <R extends MutableShortCollection>
RRichIterable. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)Same as flatCollect, only the results are collected into the target collection. -
Uses of ShortIterable in org.eclipse.collections.api.bag.primitive
Subinterfaces of ShortIterable in org.eclipse.collections.api.bag.primitive Modifier and Type Interface Description interfaceImmutableShortBagThis file was automatically generated from template file immutablePrimitiveBag.stg.interfaceMutableShortBagThis file was automatically generated from template file mutablePrimitiveBag.stg.interfaceShortBagThis file was automatically generated from template file primitiveBag.stg.Methods in org.eclipse.collections.api.bag.primitive with parameters of type ShortIterable Modifier and Type Method Description ImmutableShortBagImmutableShortBag. newWithAll(ShortIterable elements)ImmutableShortBagImmutableShortBag. newWithoutAll(ShortIterable elements)MutableShortBagMutableShortBag. withAll(ShortIterable elements)MutableShortBagMutableShortBag. withoutAll(ShortIterable elements) -
Uses of ShortIterable in org.eclipse.collections.api.collection.primitive
Subinterfaces of ShortIterable in org.eclipse.collections.api.collection.primitive Modifier and Type Interface Description interfaceImmutableShortCollectionThis file was automatically generated from template file immutablePrimitiveCollection.stg.interfaceMutableShortCollectionThis file was automatically generated from template file mutablePrimitiveCollection.stg.Methods in org.eclipse.collections.api.collection.primitive with parameters of type ShortIterable Modifier and Type Method Description booleanMutableShortCollection. addAll(ShortIterable source)ImmutableShortCollectionImmutableShortCollection. newWithAll(ShortIterable elements)ImmutableShortCollectionImmutableShortCollection. newWithoutAll(ShortIterable elements)booleanMutableShortCollection. removeAll(ShortIterable source)booleanMutableShortCollection. retainAll(ShortIterable elements)MutableShortCollectionMutableShortCollection. withAll(ShortIterable elements)MutableShortCollectionMutableShortCollection. withoutAll(ShortIterable elements) -
Uses of ShortIterable in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive with parameters of type ShortIterable Modifier and Type Method Description ImmutableShortBagImmutableShortBagFactory. ofAll(ShortIterable items)MutableShortBagMutableShortBagFactory. ofAll(ShortIterable items)ImmutableShortBagImmutableShortBagFactory. withAll(ShortIterable items)MutableShortBagMutableShortBagFactory. withAll(ShortIterable items) -
Uses of ShortIterable in org.eclipse.collections.api.factory.list.primitive
Methods in org.eclipse.collections.api.factory.list.primitive with parameters of type ShortIterable Modifier and Type Method Description ImmutableShortListImmutableShortListFactory. ofAll(ShortIterable items)MutableShortListMutableShortListFactory. ofAll(ShortIterable items)ImmutableShortListImmutableShortListFactory. withAll(ShortIterable items)MutableShortListMutableShortListFactory. withAll(ShortIterable items) -
Uses of ShortIterable in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive with parameters of type ShortIterable Modifier and Type Method Description ImmutableShortSetImmutableShortSetFactory. ofAll(ShortIterable items)MutableShortSetMutableShortSetFactory. ofAll(ShortIterable items)ImmutableShortSetImmutableShortSetFactory. withAll(ShortIterable items)MutableShortSetMutableShortSetFactory. withAll(ShortIterable items) -
Uses of ShortIterable in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive with parameters of type ShortIterable Modifier and Type Method Description ImmutableShortStackImmutableShortStackFactory. ofAll(ShortIterable items)MutableShortStackMutableShortStackFactory. ofAll(ShortIterable items)ImmutableShortStackImmutableShortStackFactory. ofAllReversed(ShortIterable items)MutableShortStackMutableShortStackFactory. ofAllReversed(ShortIterable items)ImmutableShortStackImmutableShortStackFactory. withAll(ShortIterable items)MutableShortStackMutableShortStackFactory. withAll(ShortIterable items)ImmutableShortStackImmutableShortStackFactory. withAllReversed(ShortIterable items)MutableShortStackMutableShortStackFactory. withAllReversed(ShortIterable items) -
Uses of ShortIterable in org.eclipse.collections.api.list.primitive
Subinterfaces of ShortIterable in org.eclipse.collections.api.list.primitive Modifier and Type Interface Description interfaceImmutableShortListThis file was automatically generated from template file immutablePrimitiveList.stg.interfaceMutableShortListThis file was automatically generated from template file mutablePrimitiveList.stg.interfaceShortListThis file was automatically generated from template file primitiveList.stg.Methods in org.eclipse.collections.api.list.primitive with parameters of type ShortIterable Modifier and Type Method Description booleanMutableShortList. addAllAtIndex(int index, ShortIterable source)ImmutableShortListImmutableShortList. newWithAll(ShortIterable elements)ImmutableShortListImmutableShortList. newWithoutAll(ShortIterable elements)MutableShortListMutableShortList. withAll(ShortIterable elements)MutableShortListMutableShortList. withoutAll(ShortIterable elements)default ImmutableList<ShortShortPair>ImmutableShortList. zipShort(ShortIterable iterable)Returns anImmutableListformed from thisImmutableShortListand anotherShortListby combining corresponding elements in pairs.default MutableList<ShortShortPair>MutableShortList. zipShort(ShortIterable iterable)Returns aMutableListformed from thisMutableShortListand anotherShortListby combining corresponding elements in pairs.default ListIterable<ShortShortPair>ShortList. zipShort(ShortIterable iterable)Returns aListIterableformed from thisShortListand anotherShortListby combining corresponding elements in pairs. -
Uses of ShortIterable in org.eclipse.collections.api.map.primitive
Subinterfaces of ShortIterable in org.eclipse.collections.api.map.primitive Modifier and Type Interface Description interfaceByteShortMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceCharShortMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceDoubleShortMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceFloatShortMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceImmutableByteShortMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableCharShortMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableDoubleShortMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableFloatShortMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableIntShortMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableLongShortMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceImmutableObjectShortMap<K>This file was automatically generated from template file immutableObjectPrimitiveMap.stg.interfaceImmutableShortShortMapThis file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interfaceIntShortMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceLongShortMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceMutableByteShortMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableCharShortMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableDoubleShortMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableFloatShortMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableIntShortMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableLongShortMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableObjectShortMap<K>This file was automatically generated from template file mutableObjectPrimitiveMap.stg.interfaceMutableShortShortMapThis file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interfaceMutableShortValuesMapThis file was automatically generated from template file mutablePrimitiveValuesMap.stg.interfaceObjectShortMap<K>This file was automatically generated from template file objectPrimitiveMap.stg.interfaceShortShortMapThis file was automatically generated from template file primitivePrimitiveMap.stg.interfaceShortValuesMapThis file was automatically generated from template file primitiveValuesMap.stg.Methods in org.eclipse.collections.api.map.primitive with parameters of type ShortIterable Modifier and Type Method Description ImmutableShortBooleanMapImmutableShortBooleanMap. newWithoutAllKeys(ShortIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableShortByteMapImmutableShortByteMap. newWithoutAllKeys(ShortIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableShortCharMapImmutableShortCharMap. newWithoutAllKeys(ShortIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableShortDoubleMapImmutableShortDoubleMap. newWithoutAllKeys(ShortIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableShortFloatMapImmutableShortFloatMap. newWithoutAllKeys(ShortIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableShortIntMapImmutableShortIntMap. newWithoutAllKeys(ShortIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableShortLongMapImmutableShortLongMap. newWithoutAllKeys(ShortIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableShortObjectMap<V>ImmutableShortObjectMap. newWithoutAllKeys(ShortIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.ImmutableShortShortMapImmutableShortShortMap. newWithoutAllKeys(ShortIterable keys)Copy this map, remove any associated values with the specified keys (if any exist), and return the copy as a new immutable map.MutableShortBooleanMapMutableShortBooleanMap. withoutAllKeys(ShortIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableShortByteMapMutableShortByteMap. withoutAllKeys(ShortIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableShortCharMapMutableShortCharMap. withoutAllKeys(ShortIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableShortDoubleMapMutableShortDoubleMap. withoutAllKeys(ShortIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableShortFloatMapMutableShortFloatMap. withoutAllKeys(ShortIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableShortIntMapMutableShortIntMap. withoutAllKeys(ShortIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableShortLongMapMutableShortLongMap. withoutAllKeys(ShortIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableShortObjectMap<V>MutableShortObjectMap. withoutAllKeys(ShortIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableShortShortMapMutableShortShortMap. withoutAllKeys(ShortIterable keys)Removes the mappings associated with all the keys, if they exist, from this map. -
Uses of ShortIterable in org.eclipse.collections.api.ordered.primitive
Subinterfaces of ShortIterable in org.eclipse.collections.api.ordered.primitive Modifier and Type Interface Description interfaceOrderedShortIterableThis file was automatically generated from template file orderedPrimitiveIterable.stg.interfaceReversibleShortIterableThis file was automatically generated from template file reversiblePrimitiveIterable.stg. -
Uses of ShortIterable in org.eclipse.collections.api.set.primitive
Subinterfaces of ShortIterable in org.eclipse.collections.api.set.primitive Modifier and Type Interface Description interfaceImmutableShortSetThis file was automatically generated from template file immutablePrimitiveSet.stg.interfaceMutableShortSetThis file was automatically generated from template file mutablePrimitiveSet.stg.interfaceShortSetThis file was automatically generated from template file primitiveSet.stg.Methods in org.eclipse.collections.api.set.primitive with parameters of type ShortIterable Modifier and Type Method Description ImmutableShortSetImmutableShortSet. newWithAll(ShortIterable elements)ImmutableShortSetImmutableShortSet. newWithoutAll(ShortIterable elements)MutableShortSetMutableShortSet. withAll(ShortIterable elements)MutableShortSetMutableShortSet. withoutAll(ShortIterable elements) -
Uses of ShortIterable in org.eclipse.collections.api.stack.primitive
Subinterfaces of ShortIterable in org.eclipse.collections.api.stack.primitive Modifier and Type Interface Description interfaceImmutableShortStackThis file was automatically generated from template file immutablePrimitiveStack.stg.interfaceMutableShortStackThis file was automatically generated from template file mutablePrimitiveStack.stg.interfaceShortStackThis file was automatically generated from template file primitiveStack.stg. -
Uses of ShortIterable in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl that return ShortIterable Modifier and Type Method Description ShortIterableUnmodifiableRichIterable. collectShort(ShortFunction<? super T> shortFunction)Method parameters in org.eclipse.collections.impl with type arguments of type ShortIterable Modifier and Type Method Description <R extends MutableShortCollection>
RUnmodifiableRichIterable. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target) -
Uses of ShortIterable in org.eclipse.collections.impl.bag
Method parameters in org.eclipse.collections.impl.bag with type arguments of type ShortIterable Modifier and Type Method Description <R extends MutableShortCollection>
RAbstractBag. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target) -
Uses of ShortIterable in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type ShortIterable Modifier and Type Method Description ImmutableShortBagImmutableShortBagFactoryImpl. ofAll(ShortIterable items)ImmutableShortBagImmutableShortBagFactoryImpl. withAll(ShortIterable items) -
Uses of ShortIterable in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement ShortIterable Modifier and Type Class Description classShortHashBagShortHashBag is similar toHashBag, and is memory-optimized for short primitives.classSynchronizedShortBagA synchronized view of aMutableShortBag.classUnmodifiableShortBagThis 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 ShortIterable Modifier and Type Method Description RichIterable<ShortIterable>ShortHashBag. chunk(int size)Methods in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type ShortIterable Modifier and Type Method Description booleanShortHashBag. addAll(ShortIterable source)static ShortHashBagShortHashBag. newBag(ShortIterable source)MutableShortBagMutableShortBagFactoryImpl. ofAll(ShortIterable items)booleanShortHashBag. removeAll(ShortIterable source)booleanShortHashBag. retainAll(ShortIterable source)MutableShortBagMutableShortBagFactoryImpl. withAll(ShortIterable items)ShortHashBagShortHashBag. withAll(ShortIterable iterable)SynchronizedShortBagSynchronizedShortBag. withAll(ShortIterable elements)UnmodifiableShortBagUnmodifiableShortBag. withAll(ShortIterable elements)ShortHashBagShortHashBag. withoutAll(ShortIterable iterable)SynchronizedShortBagSynchronizedShortBag. withoutAll(ShortIterable elements)UnmodifiableShortBagUnmodifiableShortBag. withoutAll(ShortIterable elements)Constructors in org.eclipse.collections.impl.bag.mutable.primitive with parameters of type ShortIterable Constructor Description ShortHashBag(ShortIterable iterable) -
Uses of ShortIterable in org.eclipse.collections.impl.bimap
Method parameters in org.eclipse.collections.impl.bimap with type arguments of type ShortIterable Modifier and Type Method Description <R extends MutableShortCollection>
RAbstractBiMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target) -
Uses of ShortIterable in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return ShortIterable Modifier and Type Method Description ShortIterableUnmodifiableBiMap. collectShort(ShortFunction<? super V> shortFunction)Method parameters in org.eclipse.collections.impl.bimap.mutable with type arguments of type ShortIterable Modifier and Type Method Description <R extends MutableShortCollection>
RUnmodifiableBiMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target) -
Uses of ShortIterable in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection that return ShortIterable Modifier and Type Method Description ShortIterableAbstractSynchronizedRichIterable. collectShort(ShortFunction<? super T> shortFunction)Method parameters in org.eclipse.collections.impl.collection with type arguments of type ShortIterable Modifier and Type Method Description <R extends MutableShortCollection>
RAbstractSynchronizedRichIterable. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target) -
Uses of ShortIterable in org.eclipse.collections.impl.collection.mutable
Method parameters in org.eclipse.collections.impl.collection.mutable with type arguments of type ShortIterable Modifier and Type Method Description <R extends MutableShortCollection>
RAbstractMultiReaderMutableCollection. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)<R extends MutableShortCollection>
RAbstractUnmodifiableMutableCollection. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target) -
Uses of ShortIterable in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement ShortIterable Modifier and Type Class Description classAbstractSynchronizedShortCollectionThis file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.classAbstractUnmodifiableShortCollectionThis file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.classSynchronizedShortCollectionThis file was automatically generated from template file synchronizedPrimitiveCollection.stg.classUnmodifiableShortCollectionThis 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 ShortIterable Modifier and Type Method Description RichIterable<ShortIterable>AbstractSynchronizedShortCollection. chunk(int size)RichIterable<ShortIterable>AbstractUnmodifiableShortCollection. chunk(int size)Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type ShortIterable Modifier and Type Method Description booleanAbstractSynchronizedShortCollection. addAll(ShortIterable source)booleanAbstractUnmodifiableShortCollection. addAll(ShortIterable source)booleanAbstractSynchronizedShortCollection. containsAll(ShortIterable source)booleanAbstractUnmodifiableShortCollection. containsAll(ShortIterable source)booleanAbstractSynchronizedShortCollection. removeAll(ShortIterable source)booleanAbstractUnmodifiableShortCollection. removeAll(ShortIterable source)booleanAbstractSynchronizedShortCollection. retainAll(ShortIterable source)booleanAbstractUnmodifiableShortCollection. retainAll(ShortIterable source)MutableShortCollectionAbstractSynchronizedShortCollection. withAll(ShortIterable elements)MutableShortCollectionAbstractUnmodifiableShortCollection. withAll(ShortIterable elements)MutableShortCollectionAbstractSynchronizedShortCollection. withoutAll(ShortIterable elements)MutableShortCollectionAbstractUnmodifiableShortCollection. withoutAll(ShortIterable elements) -
Uses of ShortIterable in org.eclipse.collections.impl.lazy.primitive
Classes in org.eclipse.collections.impl.lazy.primitive that implement ShortIterable Modifier and Type Class Description classAbstractLazyShortIterableThis file was automatically generated from template file abstractLazyPrimitiveIterable.stg.classCollectBooleanToShortIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectByteToShortIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectCharToShortIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectDoubleToShortIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectFloatToShortIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectIntToShortIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectLongToShortIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classCollectShortIterable<T>This file was automatically generated from template file collectPrimitiveIterable.stg.classCollectShortToShortIterableThis file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.classLazyShortIterableAdapterThis file was automatically generated from template file lazyPrimitiveIterableAdapter.stg.classReverseShortIterableThis file was automatically generated from template file reversePrimitiveIterable.stg.classSelectShortIterableThis file was automatically generated from template file selectPrimitiveIterable.stg.classTapShortIterableThis file was automatically generated from template file tapPrimitiveIterable.stg.Methods in org.eclipse.collections.impl.lazy.primitive that return ShortIterable Modifier and Type Method Description ShortIterableChunkShortIterable.ChunkShortIterator. next()Methods in org.eclipse.collections.impl.lazy.primitive that return types with arguments of type ShortIterable Modifier and Type Method Description RichIterable<ShortIterable>AbstractLazyShortIterable. chunk(int size)Iterator<ShortIterable>ChunkShortIterable. iterator()Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type ShortIterable Modifier and Type Method Description booleanAbstractLazyShortIterable. containsAll(ShortIterable source)booleanCollectShortIterable. containsAll(ShortIterable source)booleanLazyShortIterableAdapter. containsAll(ShortIterable source)booleanReverseShortIterable. containsAll(ShortIterable source)booleanSelectShortIterable. containsAll(ShortIterable source)Method parameters in org.eclipse.collections.impl.lazy.primitive with type arguments of type ShortIterable Modifier and Type Method Description voidChunkShortIterable. each(Procedure<? super ShortIterable> procedure) -
Uses of ShortIterable in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type ShortIterable Modifier and Type Method Description ImmutableShortListImmutableShortListFactoryImpl. ofAll(ShortIterable items)ImmutableShortListImmutableShortListFactoryImpl. withAll(ShortIterable items) -
Uses of ShortIterable in org.eclipse.collections.impl.list.mutable
Method parameters in org.eclipse.collections.impl.list.mutable with type arguments of type ShortIterable Modifier and Type Method Description <R extends MutableShortCollection>
RFastList. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target) -
Uses of ShortIterable in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement ShortIterable Modifier and Type Class Description classShortArrayListShortArrayList is similar toFastList, and is memory-optimized for short primitives.classSynchronizedShortListA synchronized view of aMutableShortList.classUnmodifiableShortListThis 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 ShortIterable Modifier and Type Method Description RichIterable<ShortIterable>ShortArrayList. chunk(int size)Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type ShortIterable Modifier and Type Method Description booleanShortArrayList. addAll(ShortIterable source)booleanShortArrayList. addAllAtIndex(int index, ShortIterable source)booleanSynchronizedShortList. addAllAtIndex(int index, ShortIterable source)booleanUnmodifiableShortList. addAllAtIndex(int index, ShortIterable source)static ShortArrayListShortArrayList. newList(ShortIterable source)MutableShortListMutableShortListFactoryImpl. ofAll(ShortIterable items)booleanShortArrayList. removeAll(ShortIterable source)booleanShortArrayList. retainAll(ShortIterable source)MutableShortListMutableShortListFactoryImpl. withAll(ShortIterable items)ShortArrayListShortArrayList. withAll(ShortIterable elements)SynchronizedShortListSynchronizedShortList. withAll(ShortIterable elements)UnmodifiableShortListUnmodifiableShortList. withAll(ShortIterable elements)ShortArrayListShortArrayList. withoutAll(ShortIterable elements)SynchronizedShortListSynchronizedShortList. withoutAll(ShortIterable elements)UnmodifiableShortListUnmodifiableShortList. withoutAll(ShortIterable elements)MutableList<ShortShortPair>ShortArrayList. zipShort(ShortIterable iterable)MutableList<ShortShortPair>SynchronizedShortList. zipShort(ShortIterable iterable)MutableList<ShortShortPair>UnmodifiableShortList. zipShort(ShortIterable iterable) -
Uses of ShortIterable in org.eclipse.collections.impl.map.immutable.primitive
Classes in org.eclipse.collections.impl.map.immutable.primitive that implement ShortIterable Modifier and Type Class Description classAbstractImmutableObjectShortMap<V>This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg. -
Uses of ShortIterable in org.eclipse.collections.impl.map.mutable
Method parameters in org.eclipse.collections.impl.map.mutable with type arguments of type ShortIterable Modifier and Type Method Description <R extends MutableShortCollection>
RUnmodifiableMutableMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target) -
Uses of ShortIterable in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement ShortIterable Modifier and Type Class Description classAbstractMutableShortKeySetThis file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.classAbstractMutableShortValuesMapThis file was automatically generated from template file abstractMutablePrimitiveValuesMap.stg.classByteShortHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classCharShortHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classDoubleShortHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classFloatShortHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classIntShortHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classLongShortHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classObjectShortHashMap<K>This file was automatically generated from template file objectPrimitiveHashMap.stg.classObjectShortHashMapWithHashingStrategy<K>This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.classShortShortHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classSynchronizedByteShortMapA synchronized view of aMutableByteShortMap.classSynchronizedCharShortMapA synchronized view of aMutableCharShortMap.classSynchronizedDoubleShortMapA synchronized view of aMutableDoubleShortMap.classSynchronizedFloatShortMapA synchronized view of aMutableFloatShortMap.classSynchronizedIntShortMapA synchronized view of aMutableIntShortMap.classSynchronizedLongShortMapA synchronized view of aMutableLongShortMap.classSynchronizedObjectShortMap<K>A synchronized view of aMutableObjectShortMap.classSynchronizedShortShortMapA synchronized view of aMutableShortShortMap.classUnmodifiableByteShortMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableCharShortMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableDoubleShortMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableFloatShortMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableIntShortMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableLongShortMapThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.classUnmodifiableObjectShortMap<K>This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.classUnmodifiableShortShortMapThis 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 ShortIterable Modifier and Type Method Description RichIterable<ShortIterable>AbstractMutableShortKeySet. chunk(int size)RichIterable<ShortIterable>AbstractMutableShortValuesMap. chunk(int size)RichIterable<ShortIterable>ObjectShortHashMap. chunk(int size)RichIterable<ShortIterable>ObjectShortHashMapWithHashingStrategy. chunk(int size)RichIterable<ShortIterable>SynchronizedByteShortMap. chunk(int size)RichIterable<ShortIterable>SynchronizedCharShortMap. chunk(int size)RichIterable<ShortIterable>SynchronizedDoubleShortMap. chunk(int size)RichIterable<ShortIterable>SynchronizedFloatShortMap. chunk(int size)RichIterable<ShortIterable>SynchronizedIntShortMap. chunk(int size)RichIterable<ShortIterable>SynchronizedLongShortMap. chunk(int size)RichIterable<ShortIterable>SynchronizedObjectShortMap. chunk(int size)RichIterable<ShortIterable>SynchronizedShortShortMap. chunk(int size)RichIterable<ShortIterable>UnmodifiableByteShortMap. chunk(int size)RichIterable<ShortIterable>UnmodifiableCharShortMap. chunk(int size)RichIterable<ShortIterable>UnmodifiableDoubleShortMap. chunk(int size)RichIterable<ShortIterable>UnmodifiableFloatShortMap. chunk(int size)RichIterable<ShortIterable>UnmodifiableIntShortMap. chunk(int size)RichIterable<ShortIterable>UnmodifiableLongShortMap. chunk(int size)RichIterable<ShortIterable>UnmodifiableObjectShortMap. chunk(int size)RichIterable<ShortIterable>UnmodifiableShortShortMap. chunk(int size)Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type ShortIterable Modifier and Type Method Description booleanAbstractMutableShortKeySet. addAll(ShortIterable source)booleanAbstractMutableShortKeySet. containsAll(ShortIterable source)booleanAbstractMutableShortValuesMap. containsAll(ShortIterable source)booleanObjectShortHashMap. containsAll(ShortIterable source)booleanObjectShortHashMapWithHashingStrategy. containsAll(ShortIterable source)booleanSynchronizedByteShortMap. containsAll(ShortIterable source)booleanSynchronizedCharShortMap. containsAll(ShortIterable source)booleanSynchronizedDoubleShortMap. containsAll(ShortIterable source)booleanSynchronizedFloatShortMap. containsAll(ShortIterable source)booleanSynchronizedIntShortMap. containsAll(ShortIterable source)booleanSynchronizedLongShortMap. containsAll(ShortIterable source)booleanSynchronizedObjectShortMap. containsAll(ShortIterable source)booleanSynchronizedShortShortMap. containsAll(ShortIterable source)booleanUnmodifiableByteShortMap. containsAll(ShortIterable source)booleanUnmodifiableCharShortMap. containsAll(ShortIterable source)booleanUnmodifiableDoubleShortMap. containsAll(ShortIterable source)booleanUnmodifiableFloatShortMap. containsAll(ShortIterable source)booleanUnmodifiableIntShortMap. containsAll(ShortIterable source)booleanUnmodifiableLongShortMap. containsAll(ShortIterable source)booleanUnmodifiableObjectShortMap. containsAll(ShortIterable source)booleanUnmodifiableShortShortMap. containsAll(ShortIterable source)booleanAbstractMutableShortKeySet. removeAll(ShortIterable source)MutableShortSetAbstractMutableShortKeySet. withAll(ShortIterable elements)MutableShortSetAbstractMutableShortKeySet. withoutAll(ShortIterable elements)ShortBooleanHashMapShortBooleanHashMap. withoutAllKeys(ShortIterable keys)ShortByteHashMapShortByteHashMap. withoutAllKeys(ShortIterable keys)ShortCharHashMapShortCharHashMap. withoutAllKeys(ShortIterable keys)ShortDoubleHashMapShortDoubleHashMap. withoutAllKeys(ShortIterable keys)ShortFloatHashMapShortFloatHashMap. withoutAllKeys(ShortIterable keys)ShortIntHashMapShortIntHashMap. withoutAllKeys(ShortIterable keys)ShortLongHashMapShortLongHashMap. withoutAllKeys(ShortIterable keys)MutableShortObjectMap<V>ShortObjectHashMap. withoutAllKeys(ShortIterable keys)ShortShortHashMapShortShortHashMap. withoutAllKeys(ShortIterable keys)MutableShortBooleanMapSynchronizedShortBooleanMap. withoutAllKeys(ShortIterable keys)MutableShortByteMapSynchronizedShortByteMap. withoutAllKeys(ShortIterable keys)MutableShortCharMapSynchronizedShortCharMap. withoutAllKeys(ShortIterable keys)MutableShortDoubleMapSynchronizedShortDoubleMap. withoutAllKeys(ShortIterable keys)MutableShortFloatMapSynchronizedShortFloatMap. withoutAllKeys(ShortIterable keys)MutableShortIntMapSynchronizedShortIntMap. withoutAllKeys(ShortIterable keys)MutableShortLongMapSynchronizedShortLongMap. withoutAllKeys(ShortIterable keys)MutableShortObjectMap<V>SynchronizedShortObjectMap. withoutAllKeys(ShortIterable keys)MutableShortShortMapSynchronizedShortShortMap. withoutAllKeys(ShortIterable keys)MutableShortBooleanMapUnmodifiableShortBooleanMap. withoutAllKeys(ShortIterable keys)MutableShortByteMapUnmodifiableShortByteMap. withoutAllKeys(ShortIterable keys)MutableShortCharMapUnmodifiableShortCharMap. withoutAllKeys(ShortIterable keys)MutableShortDoubleMapUnmodifiableShortDoubleMap. withoutAllKeys(ShortIterable keys)MutableShortFloatMapUnmodifiableShortFloatMap. withoutAllKeys(ShortIterable keys)MutableShortIntMapUnmodifiableShortIntMap. withoutAllKeys(ShortIterable keys)MutableShortLongMapUnmodifiableShortLongMap. withoutAllKeys(ShortIterable keys)MutableShortObjectMap<V>UnmodifiableShortObjectMap. withoutAllKeys(ShortIterable keys)MutableShortShortMapUnmodifiableShortShortMap. withoutAllKeys(ShortIterable keys)Method parameters in org.eclipse.collections.impl.map.mutable.primitive with type arguments of type ShortIterable Modifier and Type Method Description <R extends MutableShortCollection>
RSynchronizedByteObjectMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)<R extends MutableShortCollection>
RSynchronizedCharObjectMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)<R extends MutableShortCollection>
RSynchronizedDoubleObjectMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)<R extends MutableShortCollection>
RSynchronizedFloatObjectMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)<R extends MutableShortCollection>
RSynchronizedIntObjectMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)<R extends MutableShortCollection>
RSynchronizedLongObjectMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)<R extends MutableShortCollection>
RSynchronizedShortObjectMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target) -
Uses of ShortIterable in org.eclipse.collections.impl.map.ordered.mutable
Method parameters in org.eclipse.collections.impl.map.ordered.mutable with type arguments of type ShortIterable Modifier and Type Method Description <R extends MutableShortCollection>
RUnmodifiableMutableOrderedMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target) -
Uses of ShortIterable in org.eclipse.collections.impl.map.sorted.mutable
Method parameters in org.eclipse.collections.impl.map.sorted.mutable with type arguments of type ShortIterable Modifier and Type Method Description <R extends MutableShortCollection>
RUnmodifiableTreeMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target) -
Uses of ShortIterable in org.eclipse.collections.impl.primitive
Classes in org.eclipse.collections.impl.primitive that implement ShortIterable Modifier and Type Class Description classAbstractShortIterableThis file was automatically generated from template file abstractPrimitiveIterable.stg.classSynchronizedShortIterableA synchronized view of a ShortIterable.Methods in org.eclipse.collections.impl.primitive that return ShortIterable Modifier and Type Method Description ShortIterableSynchronizedShortIterable. reject(ShortPredicate predicate)ShortIterableSynchronizedShortIterable. select(ShortPredicate predicate)Methods in org.eclipse.collections.impl.primitive that return types with arguments of type ShortIterable Modifier and Type Method Description RichIterable<ShortIterable>SynchronizedShortIterable. chunk(int size)Methods in org.eclipse.collections.impl.primitive with parameters of type ShortIterable Modifier and Type Method Description booleanAbstractShortIterable. containsAll(ShortIterable source)booleanSynchronizedShortIterable. containsAll(ShortIterable source)static SynchronizedShortIterableSynchronizedShortIterable. of(ShortIterable iterable)This method will take a ShortIterable and wrap it directly in a SynchronizedShortIterable.static SynchronizedShortIterableSynchronizedShortIterable. of(ShortIterable iterable, Object lock)This method will take a ShortIterable and wrap it directly in a SynchronizedShortIterable. -
Uses of ShortIterable in org.eclipse.collections.impl.set.immutable.primitive
Classes in org.eclipse.collections.impl.set.immutable.primitive that implement ShortIterable Modifier and Type Class Description classAbstractImmutableShortSetThis file was automatically generated from template file abstractImmutablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.immutable.primitive that return types with arguments of type ShortIterable Modifier and Type Method Description RichIterable<ShortIterable>AbstractImmutableShortSet. chunk(int size)Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type ShortIterable Modifier and Type Method Description ImmutableShortSetAbstractImmutableShortSet. newWithAll(ShortIterable elements)ImmutableShortSetAbstractImmutableShortSet. newWithoutAll(ShortIterable elements)ImmutableShortSetImmutableShortSetFactoryImpl. ofAll(ShortIterable items)ImmutableShortSetImmutableShortSetFactoryImpl. withAll(ShortIterable items) -
Uses of ShortIterable in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement ShortIterable Modifier and Type Class Description classShortHashSetThis file was automatically generated from template file primitiveHashSet.stg.classSynchronizedShortSetA synchronized view of aMutableShortSet.classUnmodifiableShortSetThis 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 ShortIterable Modifier and Type Method Description RichIterable<ShortIterable>ShortHashSet. chunk(int size)Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type ShortIterable Modifier and Type Method Description booleanShortHashSet. addAll(ShortIterable source)static ShortHashSetShortHashSet. newSet(ShortIterable source)MutableShortSetMutableShortSetFactoryImpl. ofAll(ShortIterable items)booleanShortHashSet. removeAll(ShortIterable source)booleanShortHashSet. retainAll(ShortIterable source)MutableShortSetMutableShortSetFactoryImpl. withAll(ShortIterable items)ShortHashSetShortHashSet. withAll(ShortIterable elements)SynchronizedShortSetSynchronizedShortSet. withAll(ShortIterable elements)UnmodifiableShortSetUnmodifiableShortSet. withAll(ShortIterable elements)ShortHashSetShortHashSet. withoutAll(ShortIterable elements)SynchronizedShortSetSynchronizedShortSet. withoutAll(ShortIterable elements)UnmodifiableShortSetUnmodifiableShortSet. withoutAll(ShortIterable elements) -
Uses of ShortIterable in org.eclipse.collections.impl.set.primitive
Classes in org.eclipse.collections.impl.set.primitive that implement ShortIterable Modifier and Type Class Description classAbstractShortSetThis file was automatically generated from template file abstractPrimitiveSet.stg. -
Uses of ShortIterable in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type ShortIterable Modifier and Type Method Description ImmutableShortStackImmutableShortStackFactoryImpl. ofAll(ShortIterable items)ImmutableShortStackImmutableShortStackFactoryImpl. ofAllReversed(ShortIterable items)ImmutableShortStackImmutableShortStackFactoryImpl. withAll(ShortIterable items)ImmutableShortStackImmutableShortStackFactoryImpl. withAllReversed(ShortIterable items) -
Uses of ShortIterable in org.eclipse.collections.impl.stack.mutable
Method parameters in org.eclipse.collections.impl.stack.mutable with type arguments of type ShortIterable Modifier and Type Method Description <R extends MutableShortCollection>
RArrayStack. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)<R extends MutableShortCollection>
RSynchronizedStack. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)<R extends MutableShortCollection>
RUnmodifiableStack. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target) -
Uses of ShortIterable in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement ShortIterable Modifier and Type Class Description classShortArrayStackShortArrayStack is similar toArrayStack, and is memory-optimized for short primitives.classSynchronizedShortStackA synchronized view of aMutableShortStack.classUnmodifiableShortStackThis 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 ShortIterable Modifier and Type Method Description RichIterable<ShortIterable>SynchronizedShortStack. chunk(int size)RichIterable<ShortIterable>UnmodifiableShortStack. chunk(int size)Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type ShortIterable Modifier and Type Method Description booleanSynchronizedShortStack. containsAll(ShortIterable source)booleanUnmodifiableShortStack. containsAll(ShortIterable source)static ShortArrayStackShortArrayStack. newStack(ShortIterable items)static ShortArrayStackShortArrayStack. newStackFromTopToBottom(ShortIterable items)MutableShortStackMutableShortStackFactoryImpl. ofAll(ShortIterable items)MutableShortStackMutableShortStackFactoryImpl. ofAllReversed(ShortIterable items)MutableShortStackMutableShortStackFactoryImpl. withAll(ShortIterable items)MutableShortStackMutableShortStackFactoryImpl. withAllReversed(ShortIterable items) -
Uses of ShortIterable in org.eclipse.collections.impl.stack.primitive
Classes in org.eclipse.collections.impl.stack.primitive that implement ShortIterable Modifier and Type Class Description classAbstractShortStackThis file was automatically generated from template file abstractPrimitiveStack.stg.Methods in org.eclipse.collections.impl.stack.primitive that return types with arguments of type ShortIterable Modifier and Type Method Description RichIterable<ShortIterable>AbstractShortStack. chunk(int size)Methods in org.eclipse.collections.impl.stack.primitive with parameters of type ShortIterable Modifier and Type Method Description booleanAbstractShortStack. containsAll(ShortIterable source) -
Uses of ShortIterable in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type ShortIterable Modifier and Type Method Description static booleanShortIterableIterate. allSatisfy(ShortIterable iterable, ShortPredicate predicate)static booleanShortIterableIterate. anySatisfy(ShortIterable iterable, ShortPredicate predicate)static voidShortIterableIterate. appendString(ShortIterable iterable, Appendable appendable, String start, String separator, String end)static <V, R extends Collection<V>>
RShortIterableIterate. collect(ShortIterable iterable, ShortToObjectFunction<? extends V> function, R targetCollection)static intShortIterableIterate. count(ShortIterable iterable, ShortPredicate predicate)static shortShortIterableIterate. detectIfNone(ShortIterable iterable, ShortPredicate predicate, short ifNone)static voidShortIterableIterate. forEach(ShortIterable iterable, ShortProcedure procedure)static <T> TShortIterableIterate. injectInto(ShortIterable iterable, T injectedValue, ObjectShortToObjectFunction<? super T,? extends T> function)static booleanShortIterableIterate. isEmpty(ShortIterable iterable)static shortShortIterableIterate. max(ShortIterable iterable)static shortShortIterableIterate. maxIfEmpty(ShortIterable iterable, short ifEmpty)static shortShortIterableIterate. min(ShortIterable iterable)static shortShortIterableIterate. minIfEmpty(ShortIterable iterable, short ifEmpty)static booleanShortIterableIterate. noneSatisfy(ShortIterable iterable, ShortPredicate predicate)static booleanShortIterableIterate. notEmpty(ShortIterable iterable)static <R extends MutableShortCollection>
RShortIterableIterate. reject(ShortIterable iterable, ShortPredicate predicate, R targetCollection)static <R extends MutableShortCollection>
RShortIterableIterate. select(ShortIterable iterable, ShortPredicate predicate, R targetCollection)static longShortIterableIterate. sum(ShortIterable iterable) -
Uses of ShortIterable in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type ShortIterable Modifier and Type Method Description static LazyShortIterableLazyShortIterate. adapt(ShortIterable iterable)Creates a deferred short iterable for the specified short iterable.static <V> LazyIterable<V>LazyShortIterate. collect(ShortIterable iterable, ShortToObjectFunction<? extends V> function)Creates a deferred transforming short iterable for the specified short iterable.static <V> LazyIterable<V>LazyShortIterate. collectIf(ShortIterable iterable, ShortPredicate predicate, ShortToObjectFunction<? extends V> function)Creates a deferred filtering and transforming short iterable for the specified short iterable.static <V> LazyIterable<V>LazyShortIterate. flatCollect(ShortIterable iterable, ShortToObjectFunction<? extends Iterable<V>> function)Creates a deferred transforming and flattening short iterable for the specified short iterable.static LazyShortIterableLazyShortIterate. select(ShortIterable iterable, ShortPredicate predicate)Creates a deferred filtering short iterable for the specified short iterable.static LazyShortIterableLazyShortIterate. tap(ShortIterable iterable, ShortProcedure procedure)Creates a deferred tap iterable for the specified iterable.