Uses of Interface
org.eclipse.collections.api.ShortIterable
-
Packages that use 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 This package contains factory API for creating primitive set instances.org.eclipse.collections.api.factory.stack.primitive This package contains factory API for creating primitive stack instances.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.ordered.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMap
interface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.set.primitive org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive org.eclipse.collections.impl.utility.internal.primitive org.eclipse.collections.impl.utility.primitive -
-
Uses of ShortIterable in org.eclipse.collections.api
Subinterfaces of ShortIterable in org.eclipse.collections.api Modifier and Type Interface Description interface
LazyShortIterable
This file was automatically generated from template file lazyPrimitiveIterable.stg.Methods in org.eclipse.collections.api that return ShortIterable Modifier and Type Method Description ShortIterable
RichIterable. collectShort(ShortFunction<? super T> shortFunction)
Returns a new primitiveshort
iterable with the results of applying the specified function on each element of the source collection.ShortIterable
ShortIterable. reject(ShortPredicate predicate)
Returns a new ShortIterable with all of the elements in the ShortIterable that return false for the specified predicate.ShortIterable
ShortIterable. select(ShortPredicate predicate)
Returns a new ShortIterable with all of the elements in the ShortIterable that return true for the specified predicate.default ShortIterable
ShortIterable. 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 default boolean
ShortIterable. containsAll(ShortIterable source)
Returns true if all of the values specified in the source ShortIterable are contained in the ShortIterable, and false if they are not.default boolean
ShortIterable. containsAny(ShortIterable source)
Returns true if any of the values specified in the source ShortIterable are contained in the ShortIterable, and false if they are not.default boolean
ShortIterable. containsNone(ShortIterable source)
Returns true if none of the values specified in the source ShortIterable are contained in the ShortIterable, and false if they are.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 interface
ImmutableShortBag
This file was automatically generated from template file immutablePrimitiveBag.stg.interface
MutableShortBag
This file was automatically generated from template file mutablePrimitiveBag.stg.interface
ShortBag
This 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 ImmutableShortBag
ImmutableShortBag. newWithAll(ShortIterable elements)
ImmutableShortBag
ImmutableShortBag. newWithoutAll(ShortIterable elements)
MutableShortBag
MutableShortBag. withAll(ShortIterable elements)
MutableShortBag
MutableShortBag. 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 interface
ImmutableShortCollection
This file was automatically generated from template file immutablePrimitiveCollection.stg.interface
MutableShortCollection
This 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 boolean
MutableShortCollection. addAll(ShortIterable source)
ImmutableShortCollection
ImmutableShortCollection. newWithAll(ShortIterable elements)
ImmutableShortCollection
ImmutableShortCollection. newWithoutAll(ShortIterable elements)
boolean
MutableShortCollection. removeAll(ShortIterable source)
boolean
MutableShortCollection. retainAll(ShortIterable elements)
MutableShortCollection
MutableShortCollection. withAll(ShortIterable elements)
MutableShortCollection
MutableShortCollection. 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 ImmutableShortBag
ImmutableShortBagFactory. ofAll(ShortIterable items)
MutableShortBag
MutableShortBagFactory. ofAll(ShortIterable items)
ImmutableShortBag
ImmutableShortBagFactory. withAll(ShortIterable items)
MutableShortBag
MutableShortBagFactory. 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 ImmutableShortList
ImmutableShortListFactory. ofAll(ShortIterable items)
MutableShortList
MutableShortListFactory. ofAll(ShortIterable items)
ImmutableShortList
ImmutableShortListFactory. withAll(ShortIterable items)
MutableShortList
MutableShortListFactory. 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 ImmutableShortSet
ImmutableShortSetFactory. ofAll(ShortIterable items)
MutableShortSet
MutableShortSetFactory. ofAll(ShortIterable items)
ImmutableShortSet
ImmutableShortSetFactory. withAll(ShortIterable items)
MutableShortSet
MutableShortSetFactory. 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 ImmutableShortStack
ImmutableShortStackFactory. ofAll(ShortIterable items)
MutableShortStack
MutableShortStackFactory. ofAll(ShortIterable items)
ImmutableShortStack
ImmutableShortStackFactory. ofAllReversed(ShortIterable items)
MutableShortStack
MutableShortStackFactory. ofAllReversed(ShortIterable items)
ImmutableShortStack
ImmutableShortStackFactory. withAll(ShortIterable items)
MutableShortStack
MutableShortStackFactory. withAll(ShortIterable items)
ImmutableShortStack
ImmutableShortStackFactory. withAllReversed(ShortIterable items)
MutableShortStack
MutableShortStackFactory. 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 interface
ImmutableShortList
This file was automatically generated from template file immutablePrimitiveList.stg.interface
MutableShortList
This file was automatically generated from template file mutablePrimitiveList.stg.interface
ShortList
This 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 boolean
MutableShortList. addAllAtIndex(int index, ShortIterable source)
ImmutableShortList
ImmutableShortList. newWithAll(ShortIterable elements)
ImmutableShortList
ImmutableShortList. newWithoutAll(ShortIterable elements)
MutableShortList
MutableShortList. withAll(ShortIterable elements)
MutableShortList
MutableShortList. withoutAll(ShortIterable elements)
default ImmutableList<ShortShortPair>
ImmutableShortList. zipShort(ShortIterable iterable)
Returns anImmutableList
formed from thisImmutableShortList
and anotherShortList
by combining corresponding elements in pairs.default MutableList<ShortShortPair>
MutableShortList. zipShort(ShortIterable iterable)
Returns aMutableList
formed from thisMutableShortList
and anotherShortList
by combining corresponding elements in pairs.default ListIterable<ShortShortPair>
ShortList. zipShort(ShortIterable iterable)
Returns aListIterable
formed from thisShortList
and anotherShortList
by 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 interface
ByteShortMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
CharShortMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
DoubleShortMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
FloatShortMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
ImmutableByteShortMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableCharShortMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableDoubleShortMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableFloatShortMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableIntShortMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableLongShortMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
ImmutableObjectShortMap<K>
This file was automatically generated from template file immutableObjectPrimitiveMap.stg.interface
ImmutableShortShortMap
This file was automatically generated from template file immutablePrimitivePrimitiveMap.stg.interface
IntShortMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
LongShortMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
MutableByteShortMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableCharShortMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableDoubleShortMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableFloatShortMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableIntShortMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableLongShortMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableObjectShortMap<K>
This file was automatically generated from template file mutableObjectPrimitiveMap.stg.interface
MutableShortShortMap
This file was automatically generated from template file mutablePrimitivePrimitiveMap.stg.interface
MutableShortValuesMap
This file was automatically generated from template file mutablePrimitiveValuesMap.stg.interface
ObjectShortMap<K>
This file was automatically generated from template file objectPrimitiveMap.stg.interface
ShortShortMap
This file was automatically generated from template file primitivePrimitiveMap.stg.interface
ShortValuesMap
This 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 ImmutableShortBooleanMap
ImmutableShortBooleanMap. 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.ImmutableShortByteMap
ImmutableShortByteMap. 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.ImmutableShortCharMap
ImmutableShortCharMap. 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.ImmutableShortDoubleMap
ImmutableShortDoubleMap. 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.ImmutableShortFloatMap
ImmutableShortFloatMap. 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.ImmutableShortIntMap
ImmutableShortIntMap. 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.ImmutableShortLongMap
ImmutableShortLongMap. 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.ImmutableShortShortMap
ImmutableShortShortMap. 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.MutableShortBooleanMap
MutableShortBooleanMap. withoutAllKeys(ShortIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableShortByteMap
MutableShortByteMap. withoutAllKeys(ShortIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableShortCharMap
MutableShortCharMap. withoutAllKeys(ShortIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableShortDoubleMap
MutableShortDoubleMap. withoutAllKeys(ShortIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableShortFloatMap
MutableShortFloatMap. withoutAllKeys(ShortIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableShortIntMap
MutableShortIntMap. withoutAllKeys(ShortIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableShortLongMap
MutableShortLongMap. 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.MutableShortShortMap
MutableShortShortMap. 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 interface
OrderedShortIterable
This file was automatically generated from template file orderedPrimitiveIterable.stg.interface
ReversibleShortIterable
This 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 interface
ImmutableShortSet
This file was automatically generated from template file immutablePrimitiveSet.stg.interface
MutableShortSet
This file was automatically generated from template file mutablePrimitiveSet.stg.interface
ShortSet
This 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 ImmutableShortSet
ImmutableShortSet. newWithAll(ShortIterable elements)
ImmutableShortSet
ImmutableShortSet. newWithoutAll(ShortIterable elements)
MutableShortSet
MutableShortSet. withAll(ShortIterable elements)
MutableShortSet
MutableShortSet. 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 interface
ImmutableShortStack
This file was automatically generated from template file immutablePrimitiveStack.stg.interface
MutableShortStack
This file was automatically generated from template file mutablePrimitiveStack.stg.interface
ShortStack
This 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 ShortIterable
UnmodifiableRichIterable. 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
Classes in org.eclipse.collections.impl.bag.immutable.primitive that implement ShortIterable Modifier and Type Class Description (package private) class
ImmutableShortEmptyBag
ImmutableShortEmptyBag is an optimization forImmutableShortBag
of size 0.(package private) class
ImmutableShortHashBag
ImmutableShortHashBag is the non-modifiable equivalent ofShortHashBag
.(package private) class
ImmutableShortSingletonBag
ImmutableShortSingletonBag is an optimization forImmutableShortBag
of size 1.Methods in org.eclipse.collections.impl.bag.immutable.primitive that return types with arguments of type ShortIterable Modifier and Type Method Description RichIterable<ShortIterable>
ImmutableShortEmptyBag. chunk(int size)
RichIterable<ShortIterable>
ImmutableShortHashBag. chunk(int size)
RichIterable<ShortIterable>
ImmutableShortSingletonBag. chunk(int size)
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type ShortIterable Modifier and Type Method Description boolean
ImmutableShortEmptyBag. containsAll(ShortIterable source)
boolean
ImmutableShortHashBag. containsAll(ShortIterable source)
boolean
ImmutableShortSingletonBag. containsAll(ShortIterable source)
ImmutableShortBag
ImmutableShortEmptyBag. newWithAll(ShortIterable elements)
ImmutableShortBag
ImmutableShortHashBag. newWithAll(ShortIterable elements)
ImmutableShortBag
ImmutableShortSingletonBag. newWithAll(ShortIterable elements)
ImmutableShortBag
ImmutableShortEmptyBag. newWithoutAll(ShortIterable elements)
ImmutableShortBag
ImmutableShortHashBag. newWithoutAll(ShortIterable elements)
ImmutableShortBag
ImmutableShortSingletonBag. newWithoutAll(ShortIterable elements)
ImmutableShortBag
ImmutableShortBagFactoryImpl. ofAll(ShortIterable items)
ImmutableShortBag
ImmutableShortBagFactoryImpl. 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 class
ShortHashBag
ShortHashBag is similar toHashBag
, and is memory-optimized for short primitives.class
SynchronizedShortBag
A synchronized view of aMutableShortBag
.class
UnmodifiableShortBag
This file was automatically generated from template file unmodifiablePrimitiveBag.stg.Methods in org.eclipse.collections.impl.bag.mutable.primitive that return types with arguments of type 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 boolean
ShortHashBag. addAll(ShortIterable source)
static ShortHashBag
ShortHashBag. newBag(ShortIterable source)
MutableShortBag
MutableShortBagFactoryImpl. ofAll(ShortIterable items)
boolean
ShortHashBag. removeAll(ShortIterable source)
boolean
ShortHashBag. retainAll(ShortIterable source)
MutableShortBag
MutableShortBagFactoryImpl. withAll(ShortIterable items)
ShortHashBag
ShortHashBag. withAll(ShortIterable iterable)
SynchronizedShortBag
SynchronizedShortBag. withAll(ShortIterable elements)
UnmodifiableShortBag
UnmodifiableShortBag. withAll(ShortIterable elements)
ShortHashBag
ShortHashBag. withoutAll(ShortIterable iterable)
SynchronizedShortBag
SynchronizedShortBag. withoutAll(ShortIterable elements)
UnmodifiableShortBag
UnmodifiableShortBag. 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 ShortIterable
UnmodifiableBiMap. 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 ShortIterable
AbstractSynchronizedRichIterable. 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>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. 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 class
AbstractSynchronizedShortCollection
This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.class
AbstractUnmodifiableShortCollection
This file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.class
SynchronizedShortCollection
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.class
UnmodifiableShortCollection
This file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Methods in org.eclipse.collections.impl.collection.mutable.primitive that return types with arguments of type 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 boolean
AbstractSynchronizedShortCollection. addAll(ShortIterable source)
boolean
AbstractUnmodifiableShortCollection. addAll(ShortIterable source)
boolean
AbstractSynchronizedShortCollection. containsAll(ShortIterable source)
boolean
AbstractUnmodifiableShortCollection. containsAll(ShortIterable source)
boolean
AbstractSynchronizedShortCollection. containsAny(ShortIterable source)
boolean
AbstractUnmodifiableShortCollection. containsAny(ShortIterable source)
boolean
AbstractSynchronizedShortCollection. containsNone(ShortIterable source)
boolean
AbstractUnmodifiableShortCollection. containsNone(ShortIterable source)
boolean
AbstractSynchronizedShortCollection. removeAll(ShortIterable source)
boolean
AbstractUnmodifiableShortCollection. removeAll(ShortIterable source)
boolean
AbstractSynchronizedShortCollection. retainAll(ShortIterable source)
boolean
AbstractUnmodifiableShortCollection. retainAll(ShortIterable source)
MutableShortCollection
AbstractSynchronizedShortCollection. withAll(ShortIterable elements)
MutableShortCollection
AbstractUnmodifiableShortCollection. withAll(ShortIterable elements)
MutableShortCollection
AbstractSynchronizedShortCollection. withoutAll(ShortIterable elements)
MutableShortCollection
AbstractUnmodifiableShortCollection. 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 class
AbstractLazyShortIterable
This file was automatically generated from template file abstractLazyPrimitiveIterable.stg.class
CollectBooleanToShortIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectByteToShortIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectCharToShortIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectDoubleToShortIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectFloatToShortIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectIntToShortIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectLongToShortIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
CollectShortIterable<T>
This file was automatically generated from template file collectPrimitiveIterable.stg.class
CollectShortToShortIterable
This file was automatically generated from template file collectPrimitiveToPrimitiveIterable.stg.class
LazyShortIterableAdapter
This file was automatically generated from template file lazyPrimitiveIterableAdapter.stg.class
ReverseShortIterable
This file was automatically generated from template file reversePrimitiveIterable.stg.class
SelectShortIterable
This file was automatically generated from template file selectPrimitiveIterable.stg.class
TapShortIterable
This file was automatically generated from template file tapPrimitiveIterable.stg.Fields in org.eclipse.collections.impl.lazy.primitive declared as ShortIterable Modifier and Type Field Description private ShortIterable
ChunkShortIterable. adapted
private ShortIterable
TapShortIterable. adapted
private ShortIterable
LazyShortIterableAdapter. delegate
private ShortIterable
SelectShortIterable. delegate
private ShortIterable
CollectShortToBooleanIterable. iterable
private ShortIterable
CollectShortToByteIterable. iterable
private ShortIterable
CollectShortToCharIterable. iterable
private ShortIterable
CollectShortToDoubleIterable. iterable
private ShortIterable
CollectShortToFloatIterable. iterable
private ShortIterable
CollectShortToIntIterable. iterable
private ShortIterable
CollectShortToLongIterable. iterable
private ShortIterable
CollectShortToObjectIterable. iterable
private ShortIterable
CollectShortToShortIterable. iterable
private ShortIterable
FlatCollectShortToObjectIterable. iterable
Methods in org.eclipse.collections.impl.lazy.primitive that return ShortIterable Modifier and Type Method Description ShortIterable
ChunkShortIterable.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)
java.util.Iterator<ShortIterable>
ChunkShortIterable. iterator()
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type ShortIterable Modifier and Type Method Description boolean
AbstractLazyShortIterable. containsAll(ShortIterable source)
boolean
CollectShortIterable. containsAll(ShortIterable source)
boolean
LazyShortIterableAdapter. containsAll(ShortIterable source)
boolean
ReverseShortIterable. containsAll(ShortIterable source)
boolean
SelectShortIterable. containsAll(ShortIterable source)
Method parameters in org.eclipse.collections.impl.lazy.primitive with type arguments of type ShortIterable Modifier and Type Method Description void
ChunkShortIterable. each(Procedure<? super ShortIterable> procedure)
-
Uses of ShortIterable in org.eclipse.collections.impl.list.immutable.primitive
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement ShortIterable Modifier and Type Class Description (package private) class
ImmutableShortArrayList
ImmutableShortArrayList is the non-modifiable equivalent ofShortArrayList
.(package private) class
ImmutableShortEmptyList
ImmutableShortEmptyList is an optimization forImmutableShortList
of size 0.(package private) class
ImmutableShortSingletonList
ImmutableShortSingletonList is an optimization forImmutableShortList
of size 1.Methods in org.eclipse.collections.impl.list.immutable.primitive that return types with arguments of type ShortIterable Modifier and Type Method Description RichIterable<ShortIterable>
ImmutableShortArrayList. chunk(int size)
RichIterable<ShortIterable>
ImmutableShortEmptyList. chunk(int size)
RichIterable<ShortIterable>
ImmutableShortSingletonList. chunk(int size)
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type ShortIterable Modifier and Type Method Description boolean
ImmutableShortArrayList. containsAll(ShortIterable source)
boolean
ImmutableShortEmptyList. containsAll(ShortIterable source)
boolean
ImmutableShortSingletonList. containsAll(ShortIterable source)
static ImmutableShortArrayList
ImmutableShortArrayList. newList(ShortIterable iterable)
ImmutableShortList
ImmutableShortArrayList. newWithAll(ShortIterable elements)
ImmutableShortList
ImmutableShortEmptyList. newWithAll(ShortIterable elements)
ImmutableShortList
ImmutableShortSingletonList. newWithAll(ShortIterable elements)
ImmutableShortList
ImmutableShortArrayList. newWithoutAll(ShortIterable elements)
ImmutableShortList
ImmutableShortEmptyList. newWithoutAll(ShortIterable elements)
ImmutableShortList
ImmutableShortSingletonList. newWithoutAll(ShortIterable elements)
ImmutableShortList
ImmutableShortListFactoryImpl. ofAll(ShortIterable items)
ImmutableShortList
ImmutableShortListFactoryImpl. withAll(ShortIterable items)
ImmutableList<ShortShortPair>
ImmutableShortArrayList. zipShort(ShortIterable iterable)
ImmutableList<ShortShortPair>
ImmutableShortEmptyList. zipShort(ShortIterable iterable)
ImmutableList<ShortShortPair>
ImmutableShortSingletonList. zipShort(ShortIterable iterable)
-
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 class
ShortArrayList
ShortArrayList is similar to FastList, and is memory-optimized for short primitives.class
SynchronizedShortList
A synchronized view of aMutableShortList
.class
UnmodifiableShortList
This file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive that return types with arguments of type 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 boolean
ShortArrayList. addAll(ShortIterable source)
boolean
ShortArrayList. addAllAtIndex(int index, ShortIterable source)
boolean
SynchronizedShortList. addAllAtIndex(int index, ShortIterable source)
boolean
UnmodifiableShortList. addAllAtIndex(int index, ShortIterable source)
static ShortArrayList
ShortArrayList. newList(ShortIterable source)
MutableShortList
MutableShortListFactoryImpl. ofAll(ShortIterable items)
boolean
ShortArrayList. removeAll(ShortIterable source)
boolean
ShortArrayList. retainAll(ShortIterable source)
MutableShortList
MutableShortListFactoryImpl. withAll(ShortIterable items)
ShortArrayList
ShortArrayList. withAll(ShortIterable elements)
SynchronizedShortList
SynchronizedShortList. withAll(ShortIterable elements)
UnmodifiableShortList
UnmodifiableShortList. withAll(ShortIterable elements)
ShortArrayList
ShortArrayList. withoutAll(ShortIterable elements)
SynchronizedShortList
SynchronizedShortList. withoutAll(ShortIterable elements)
UnmodifiableShortList
UnmodifiableShortList. 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 class
AbstractImmutableObjectShortMap<V>
This file was automatically generated from template file abstractImmutableObjectPrimitiveMap.stg.(package private) class
ImmutableByteShortEmptyMap
ImmutableByteShortEmptyMap is an optimization forImmutableByteShortMap
of size 0.(package private) class
ImmutableByteShortHashMap
ImmutableByteShortHashMap is the non-modifiable equivalent ofByteShortHashMap
.(package private) class
ImmutableByteShortSingletonMap
ImmutableByteShortSingletonMap is an optimization forImmutableByteShortMap
of size 1.(package private) class
ImmutableCharShortEmptyMap
ImmutableCharShortEmptyMap is an optimization forImmutableCharShortMap
of size 0.(package private) class
ImmutableCharShortHashMap
ImmutableCharShortHashMap is the non-modifiable equivalent ofCharShortHashMap
.(package private) class
ImmutableCharShortSingletonMap
ImmutableCharShortSingletonMap is an optimization forImmutableCharShortMap
of size 1.(package private) class
ImmutableDoubleShortEmptyMap
ImmutableDoubleShortEmptyMap is an optimization forImmutableDoubleShortMap
of size 0.(package private) class
ImmutableDoubleShortHashMap
ImmutableDoubleShortHashMap is the non-modifiable equivalent ofDoubleShortHashMap
.(package private) class
ImmutableDoubleShortSingletonMap
ImmutableDoubleShortSingletonMap is an optimization forImmutableDoubleShortMap
of size 1.(package private) class
ImmutableFloatShortEmptyMap
ImmutableFloatShortEmptyMap is an optimization forImmutableFloatShortMap
of size 0.(package private) class
ImmutableFloatShortHashMap
ImmutableFloatShortHashMap is the non-modifiable equivalent ofFloatShortHashMap
.(package private) class
ImmutableFloatShortSingletonMap
ImmutableFloatShortSingletonMap is an optimization forImmutableFloatShortMap
of size 1.(package private) class
ImmutableIntShortEmptyMap
ImmutableIntShortEmptyMap is an optimization forImmutableIntShortMap
of size 0.(package private) class
ImmutableIntShortHashMap
ImmutableIntShortHashMap is the non-modifiable equivalent ofIntShortHashMap
.(package private) class
ImmutableIntShortSingletonMap
ImmutableIntShortSingletonMap is an optimization forImmutableIntShortMap
of size 1.(package private) class
ImmutableLongShortEmptyMap
ImmutableLongShortEmptyMap is an optimization forImmutableLongShortMap
of size 0.(package private) class
ImmutableLongShortHashMap
ImmutableLongShortHashMap is the non-modifiable equivalent ofLongShortHashMap
.(package private) class
ImmutableLongShortSingletonMap
ImmutableLongShortSingletonMap is an optimization forImmutableLongShortMap
of size 1.(package private) class
ImmutableObjectShortEmptyMap<K>
ImmutableObjectShortEmptyMap is an optimization forImmutableObjectShortMap
of size 0.(package private) class
ImmutableObjectShortHashMap<K>
ImmutableObjectShortHashMap is the non-modifiable equivalent ofObjectShortHashMap
.(package private) class
ImmutableObjectShortSingletonMap<K>
ImmutableObjectShortSingletonMap is an optimization forImmutableObjectShortMap
of size 1.(package private) class
ImmutableShortShortEmptyMap
ImmutableShortShortEmptyMap is an optimization forImmutableShortShortMap
of size 0.(package private) class
ImmutableShortShortHashMap
ImmutableShortShortHashMap is the non-modifiable equivalent ofShortShortHashMap
.(package private) class
ImmutableShortShortSingletonMap
ImmutableShortShortSingletonMap is an optimization forImmutableShortShortMap
of size 1.Methods in org.eclipse.collections.impl.map.immutable.primitive that return types with arguments of type ShortIterable Modifier and Type Method Description RichIterable<ShortIterable>
ImmutableByteShortEmptyMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableByteShortHashMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableByteShortSingletonMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableCharShortEmptyMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableCharShortHashMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableCharShortSingletonMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableDoubleShortEmptyMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableDoubleShortHashMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableDoubleShortSingletonMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableFloatShortEmptyMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableFloatShortHashMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableFloatShortSingletonMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableIntShortEmptyMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableIntShortHashMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableIntShortSingletonMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableLongShortEmptyMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableLongShortHashMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableLongShortSingletonMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableObjectShortEmptyMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableObjectShortHashMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableObjectShortSingletonMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableShortShortEmptyMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableShortShortHashMap. chunk(int size)
RichIterable<ShortIterable>
ImmutableShortShortSingletonMap. chunk(int size)
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type ShortIterable Modifier and Type Method Description boolean
ImmutableByteShortEmptyMap. containsAll(ShortIterable source)
boolean
ImmutableByteShortHashMap. containsAll(ShortIterable source)
boolean
ImmutableByteShortSingletonMap. containsAll(ShortIterable source)
boolean
ImmutableCharShortEmptyMap. containsAll(ShortIterable source)
boolean
ImmutableCharShortHashMap. containsAll(ShortIterable source)
boolean
ImmutableCharShortSingletonMap. containsAll(ShortIterable source)
boolean
ImmutableDoubleShortEmptyMap. containsAll(ShortIterable source)
boolean
ImmutableDoubleShortHashMap. containsAll(ShortIterable source)
boolean
ImmutableDoubleShortSingletonMap. containsAll(ShortIterable source)
boolean
ImmutableFloatShortEmptyMap. containsAll(ShortIterable source)
boolean
ImmutableFloatShortHashMap. containsAll(ShortIterable source)
boolean
ImmutableFloatShortSingletonMap. containsAll(ShortIterable source)
boolean
ImmutableIntShortEmptyMap. containsAll(ShortIterable source)
boolean
ImmutableIntShortHashMap. containsAll(ShortIterable source)
boolean
ImmutableIntShortSingletonMap. containsAll(ShortIterable source)
boolean
ImmutableLongShortEmptyMap. containsAll(ShortIterable source)
boolean
ImmutableLongShortHashMap. containsAll(ShortIterable source)
boolean
ImmutableLongShortSingletonMap. containsAll(ShortIterable source)
boolean
ImmutableObjectShortEmptyMap. containsAll(ShortIterable source)
boolean
ImmutableObjectShortHashMap. containsAll(ShortIterable source)
boolean
ImmutableObjectShortSingletonMap. containsAll(ShortIterable source)
boolean
ImmutableShortShortEmptyMap. containsAll(ShortIterable source)
boolean
ImmutableShortShortHashMap. containsAll(ShortIterable source)
boolean
ImmutableShortShortSingletonMap. containsAll(ShortIterable source)
ImmutableShortBooleanMap
ImmutableShortBooleanEmptyMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortBooleanMap
ImmutableShortBooleanHashMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortBooleanMap
ImmutableShortBooleanSingletonMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortByteMap
ImmutableShortByteEmptyMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortByteMap
ImmutableShortByteHashMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortByteMap
ImmutableShortByteSingletonMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortCharMap
ImmutableShortCharEmptyMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortCharMap
ImmutableShortCharHashMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortCharMap
ImmutableShortCharSingletonMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortDoubleMap
ImmutableShortDoubleEmptyMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortDoubleMap
ImmutableShortDoubleHashMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortDoubleMap
ImmutableShortDoubleSingletonMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortFloatMap
ImmutableShortFloatEmptyMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortFloatMap
ImmutableShortFloatHashMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortFloatMap
ImmutableShortFloatSingletonMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortIntMap
ImmutableShortIntEmptyMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortIntMap
ImmutableShortIntHashMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortIntMap
ImmutableShortIntSingletonMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortLongMap
ImmutableShortLongEmptyMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortLongMap
ImmutableShortLongHashMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortLongMap
ImmutableShortLongSingletonMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortObjectMap<V>
ImmutableShortObjectEmptyMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortObjectMap<V>
ImmutableShortObjectHashMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortObjectMap<V>
ImmutableShortObjectSingletonMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortShortMap
ImmutableShortShortEmptyMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortShortMap
ImmutableShortShortHashMap. newWithoutAllKeys(ShortIterable keys)
ImmutableShortShortMap
ImmutableShortShortSingletonMap. newWithoutAllKeys(ShortIterable keys)
Method parameters in org.eclipse.collections.impl.map.immutable.primitive with type arguments of type ShortIterable Modifier and Type Method Description <R extends MutableShortCollection>
RImmutableByteObjectEmptyMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RImmutableCharObjectEmptyMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RImmutableDoubleObjectEmptyMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RImmutableFloatObjectEmptyMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RImmutableIntObjectEmptyMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RImmutableLongObjectEmptyMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
<R extends MutableShortCollection>
RImmutableShortObjectEmptyMap. flatCollectShort(Function<? super V,? extends ShortIterable> function, R target)
-
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 class
AbstractMutableShortKeySet
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.class
AbstractMutableShortValuesMap
This file was automatically generated from template file abstractMutablePrimitiveValuesMap.stg.protected class
AbstractMutableShortValuesMap.AbstractShortValuesCollection
class
ByteShortHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
ByteShortHashMap.ValuesCollection
class
CharShortHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
CharShortHashMap.ValuesCollection
class
DoubleShortHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
DoubleShortHashMap.ValuesCollection
class
FloatShortHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
FloatShortHashMap.ValuesCollection
(package private) class
ImmutableShortMapKeySet
This file was automatically generated from template file immutablePrimitiveMapKeySet.stg(package private) class
ImmutableShortShortMapKeySet
This file was automatically generated from template file immutablePrimitivePrimitiveMapKeySet.stgclass
IntShortHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
IntShortHashMap.ValuesCollection
class
LongShortHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
LongShortHashMap.ValuesCollection
class
ObjectShortHashMap<K>
This file was automatically generated from template file objectPrimitiveHashMap.stg.private class
ObjectShortHashMap.ValuesCollection
class
ObjectShortHashMapWithHashingStrategy<K>
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.private class
ObjectShortHashMapWithHashingStrategy.ValuesCollection
private class
ShortBooleanHashMap.KeySet
private class
ShortBooleanHashMap.KeysView
private class
ShortByteHashMap.KeySet
private class
ShortByteHashMap.KeysView
private class
ShortCharHashMap.KeySet
private class
ShortCharHashMap.KeysView
private class
ShortDoubleHashMap.KeySet
private class
ShortDoubleHashMap.KeysView
private class
ShortFloatHashMap.KeySet
private class
ShortFloatHashMap.KeysView
private class
ShortIntHashMap.KeySet
private class
ShortIntHashMap.KeysView
private class
ShortLongHashMap.KeySet
private class
ShortLongHashMap.KeysView
private class
ShortObjectHashMap.KeySet
private class
ShortObjectHashMap.KeysView
class
ShortShortHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.private class
ShortShortHashMap.KeySet
private class
ShortShortHashMap.KeysView
private class
ShortShortHashMap.ValuesCollection
class
SynchronizedByteShortMap
A synchronized view of aMutableByteShortMap
.class
SynchronizedCharShortMap
A synchronized view of aMutableCharShortMap
.class
SynchronizedDoubleShortMap
A synchronized view of aMutableDoubleShortMap
.class
SynchronizedFloatShortMap
A synchronized view of aMutableFloatShortMap
.class
SynchronizedIntShortMap
A synchronized view of aMutableIntShortMap
.class
SynchronizedLongShortMap
A synchronized view of aMutableLongShortMap
.class
SynchronizedObjectShortMap<K>
A synchronized view of aMutableObjectShortMap
.class
SynchronizedShortShortMap
A synchronized view of aMutableShortShortMap
.class
UnmodifiableByteShortMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableCharShortMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableDoubleShortMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableFloatShortMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableIntShortMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableLongShortMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.class
UnmodifiableObjectShortMap<K>
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.class
UnmodifiableShortShortMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return types with arguments of type ShortIterable Modifier and Type Method Description RichIterable<ShortIterable>
AbstractMutableShortKeySet. chunk(int size)
RichIterable<ShortIterable>
AbstractMutableShortValuesMap.AbstractShortValuesCollection. chunk(int size)
RichIterable<ShortIterable>
AbstractMutableShortValuesMap. chunk(int size)
RichIterable<ShortIterable>
ObjectShortHashMap. chunk(int size)
RichIterable<ShortIterable>
ObjectShortHashMap.ValuesCollection. chunk(int size)
RichIterable<ShortIterable>
ObjectShortHashMapWithHashingStrategy. chunk(int size)
RichIterable<ShortIterable>
ObjectShortHashMapWithHashingStrategy.ValuesCollection. 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 boolean
AbstractMutableShortKeySet. addAll(ShortIterable source)
boolean
AbstractMutableShortValuesMap.AbstractShortValuesCollection. addAll(ShortIterable source)
boolean
ObjectShortHashMap.ValuesCollection. addAll(ShortIterable source)
boolean
ObjectShortHashMapWithHashingStrategy.ValuesCollection. addAll(ShortIterable source)
boolean
AbstractMutableShortKeySet. containsAll(ShortIterable source)
boolean
AbstractMutableShortValuesMap.AbstractShortValuesCollection. containsAll(ShortIterable source)
boolean
AbstractMutableShortValuesMap. containsAll(ShortIterable source)
boolean
ObjectShortHashMap. containsAll(ShortIterable source)
boolean
ObjectShortHashMap.ValuesCollection. containsAll(ShortIterable source)
boolean
ObjectShortHashMapWithHashingStrategy. containsAll(ShortIterable source)
boolean
ObjectShortHashMapWithHashingStrategy.ValuesCollection. containsAll(ShortIterable source)
boolean
ShortBooleanHashMap.KeysView. containsAll(ShortIterable source)
boolean
SynchronizedByteShortMap. containsAll(ShortIterable source)
boolean
SynchronizedCharShortMap. containsAll(ShortIterable source)
boolean
SynchronizedDoubleShortMap. containsAll(ShortIterable source)
boolean
SynchronizedFloatShortMap. containsAll(ShortIterable source)
boolean
SynchronizedIntShortMap. containsAll(ShortIterable source)
boolean
SynchronizedLongShortMap. containsAll(ShortIterable source)
boolean
SynchronizedObjectShortMap. containsAll(ShortIterable source)
boolean
SynchronizedShortShortMap. containsAll(ShortIterable source)
boolean
UnmodifiableByteShortMap. containsAll(ShortIterable source)
boolean
UnmodifiableCharShortMap. containsAll(ShortIterable source)
boolean
UnmodifiableDoubleShortMap. containsAll(ShortIterable source)
boolean
UnmodifiableFloatShortMap. containsAll(ShortIterable source)
boolean
UnmodifiableIntShortMap. containsAll(ShortIterable source)
boolean
UnmodifiableLongShortMap. containsAll(ShortIterable source)
boolean
UnmodifiableObjectShortMap. containsAll(ShortIterable source)
boolean
UnmodifiableShortShortMap. containsAll(ShortIterable source)
boolean
AbstractMutableShortKeySet. removeAll(ShortIterable source)
boolean
AbstractMutableShortValuesMap.AbstractShortValuesCollection. removeAll(ShortIterable source)
boolean
ObjectShortHashMap.ValuesCollection. removeAll(ShortIterable source)
boolean
ObjectShortHashMapWithHashingStrategy.ValuesCollection. removeAll(ShortIterable source)
boolean
ByteShortHashMap.ValuesCollection. retainAll(ShortIterable source)
boolean
CharShortHashMap.ValuesCollection. retainAll(ShortIterable source)
boolean
DoubleShortHashMap.ValuesCollection. retainAll(ShortIterable source)
boolean
FloatShortHashMap.ValuesCollection. retainAll(ShortIterable source)
boolean
IntShortHashMap.ValuesCollection. retainAll(ShortIterable source)
boolean
LongShortHashMap.ValuesCollection. retainAll(ShortIterable source)
boolean
ObjectShortHashMap.ValuesCollection. retainAll(ShortIterable source)
boolean
ObjectShortHashMapWithHashingStrategy.ValuesCollection. retainAll(ShortIterable source)
boolean
ShortBooleanHashMap.KeySet. retainAll(ShortIterable source)
boolean
ShortByteHashMap.KeySet. retainAll(ShortIterable source)
boolean
ShortCharHashMap.KeySet. retainAll(ShortIterable source)
boolean
ShortDoubleHashMap.KeySet. retainAll(ShortIterable source)
boolean
ShortFloatHashMap.KeySet. retainAll(ShortIterable source)
boolean
ShortIntHashMap.KeySet. retainAll(ShortIterable source)
boolean
ShortLongHashMap.KeySet. retainAll(ShortIterable source)
boolean
ShortObjectHashMap.KeySet. retainAll(ShortIterable source)
boolean
ShortShortHashMap.KeySet. retainAll(ShortIterable source)
boolean
ShortShortHashMap.ValuesCollection. retainAll(ShortIterable source)
MutableShortSet
AbstractMutableShortKeySet. withAll(ShortIterable elements)
MutableShortCollection
AbstractMutableShortValuesMap.AbstractShortValuesCollection. withAll(ShortIterable elements)
MutableShortCollection
ObjectShortHashMap.ValuesCollection. withAll(ShortIterable elements)
MutableShortCollection
ObjectShortHashMapWithHashingStrategy.ValuesCollection. withAll(ShortIterable elements)
MutableShortSet
AbstractMutableShortKeySet. withoutAll(ShortIterable elements)
MutableShortCollection
AbstractMutableShortValuesMap.AbstractShortValuesCollection. withoutAll(ShortIterable elements)
MutableShortCollection
ObjectShortHashMap.ValuesCollection. withoutAll(ShortIterable elements)
MutableShortCollection
ObjectShortHashMapWithHashingStrategy.ValuesCollection. withoutAll(ShortIterable elements)
ShortBooleanHashMap
ShortBooleanHashMap. withoutAllKeys(ShortIterable keys)
ShortByteHashMap
ShortByteHashMap. withoutAllKeys(ShortIterable keys)
ShortCharHashMap
ShortCharHashMap. withoutAllKeys(ShortIterable keys)
ShortDoubleHashMap
ShortDoubleHashMap. withoutAllKeys(ShortIterable keys)
ShortFloatHashMap
ShortFloatHashMap. withoutAllKeys(ShortIterable keys)
ShortIntHashMap
ShortIntHashMap. withoutAllKeys(ShortIterable keys)
ShortLongHashMap
ShortLongHashMap. withoutAllKeys(ShortIterable keys)
MutableShortObjectMap<V>
ShortObjectHashMap. withoutAllKeys(ShortIterable keys)
ShortShortHashMap
ShortShortHashMap. withoutAllKeys(ShortIterable keys)
MutableShortBooleanMap
SynchronizedShortBooleanMap. withoutAllKeys(ShortIterable keys)
MutableShortByteMap
SynchronizedShortByteMap. withoutAllKeys(ShortIterable keys)
MutableShortCharMap
SynchronizedShortCharMap. withoutAllKeys(ShortIterable keys)
MutableShortDoubleMap
SynchronizedShortDoubleMap. withoutAllKeys(ShortIterable keys)
MutableShortFloatMap
SynchronizedShortFloatMap. withoutAllKeys(ShortIterable keys)
MutableShortIntMap
SynchronizedShortIntMap. withoutAllKeys(ShortIterable keys)
MutableShortLongMap
SynchronizedShortLongMap. withoutAllKeys(ShortIterable keys)
MutableShortObjectMap<V>
SynchronizedShortObjectMap. withoutAllKeys(ShortIterable keys)
MutableShortShortMap
SynchronizedShortShortMap. withoutAllKeys(ShortIterable keys)
MutableShortBooleanMap
UnmodifiableShortBooleanMap. withoutAllKeys(ShortIterable keys)
MutableShortByteMap
UnmodifiableShortByteMap. withoutAllKeys(ShortIterable keys)
MutableShortCharMap
UnmodifiableShortCharMap. withoutAllKeys(ShortIterable keys)
MutableShortDoubleMap
UnmodifiableShortDoubleMap. withoutAllKeys(ShortIterable keys)
MutableShortFloatMap
UnmodifiableShortFloatMap. withoutAllKeys(ShortIterable keys)
MutableShortIntMap
UnmodifiableShortIntMap. withoutAllKeys(ShortIterable keys)
MutableShortLongMap
UnmodifiableShortLongMap. withoutAllKeys(ShortIterable keys)
MutableShortObjectMap<V>
UnmodifiableShortObjectMap. withoutAllKeys(ShortIterable keys)
MutableShortShortMap
UnmodifiableShortShortMap. 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 class
AbstractShortIterable
This file was automatically generated from template file abstractPrimitiveIterable.stg.class
SynchronizedShortIterable
A synchronized view of a ShortIterable.Fields in org.eclipse.collections.impl.primitive declared as ShortIterable Modifier and Type Field Description private ShortIterable
SynchronizedShortIterable. iterable
Methods in org.eclipse.collections.impl.primitive that return ShortIterable Modifier and Type Method Description ShortIterable
SynchronizedShortIterable. reject(ShortPredicate predicate)
ShortIterable
SynchronizedShortIterable. 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 boolean
SynchronizedShortIterable. containsAll(ShortIterable source)
boolean
SynchronizedShortIterable. containsAny(ShortIterable source)
boolean
SynchronizedShortIterable. containsNone(ShortIterable source)
static SynchronizedShortIterable
SynchronizedShortIterable. of(ShortIterable iterable)
This method will take a ShortIterable and wrap it directly in a SynchronizedShortIterable.static SynchronizedShortIterable
SynchronizedShortIterable. of(ShortIterable iterable, java.lang.Object lock)
This method will take a ShortIterable and wrap it directly in a SynchronizedShortIterable.Constructors in org.eclipse.collections.impl.primitive with parameters of type ShortIterable Constructor Description SynchronizedShortIterable(ShortIterable iterable)
SynchronizedShortIterable(ShortIterable iterable, java.lang.Object newLock)
-
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 class
AbstractImmutableShortSet
This file was automatically generated from template file abstractImmutablePrimitiveSet.stg.(package private) class
ImmutableShortEmptySet
ImmutableShortEmptySet is an optimization forImmutableShortSet
of size 0.(package private) class
ImmutableShortSingletonSet
ImmutableShortSingletonSet is an optimization forImmutableShortSet
of size 1.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)
RichIterable<ShortIterable>
ImmutableShortEmptySet. chunk(int size)
RichIterable<ShortIterable>
ImmutableShortSingletonSet. chunk(int size)
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type ShortIterable Modifier and Type Method Description boolean
ImmutableShortEmptySet. containsAll(ShortIterable source)
boolean
ImmutableShortSingletonSet. containsAll(ShortIterable source)
ImmutableShortSet
AbstractImmutableShortSet. newWithAll(ShortIterable elements)
ImmutableShortSet
ImmutableShortEmptySet. newWithAll(ShortIterable elements)
ImmutableShortSet
ImmutableShortSingletonSet. newWithAll(ShortIterable elements)
ImmutableShortSet
AbstractImmutableShortSet. newWithoutAll(ShortIterable elements)
ImmutableShortSet
ImmutableShortEmptySet. newWithoutAll(ShortIterable elements)
ImmutableShortSet
ImmutableShortSingletonSet. newWithoutAll(ShortIterable elements)
ImmutableShortSet
ImmutableShortSetFactoryImpl. ofAll(ShortIterable items)
ImmutableShortSet
ImmutableShortSetFactoryImpl. 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 class
ShortHashSet
This file was automatically generated from template file primitiveHashSet.stg.private static class
ShortHashSet.ImmutableShortHashSet
class
SynchronizedShortSet
A synchronized view of aMutableShortSet
.class
UnmodifiableShortSet
This file was automatically generated from template file unmodifiablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.mutable.primitive that return types with arguments of type 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 boolean
ShortHashSet. addAll(ShortIterable source)
static ShortHashSet
ShortHashSet. newSet(ShortIterable source)
MutableShortSet
MutableShortSetFactoryImpl. ofAll(ShortIterable items)
boolean
ShortHashSet. removeAll(ShortIterable source)
boolean
ShortHashSet. retainAll(ShortIterable source)
MutableShortSet
MutableShortSetFactoryImpl. withAll(ShortIterable items)
ShortHashSet
ShortHashSet. withAll(ShortIterable elements)
SynchronizedShortSet
SynchronizedShortSet. withAll(ShortIterable elements)
UnmodifiableShortSet
UnmodifiableShortSet. withAll(ShortIterable elements)
ShortHashSet
ShortHashSet. withoutAll(ShortIterable elements)
SynchronizedShortSet
SynchronizedShortSet. withoutAll(ShortIterable elements)
UnmodifiableShortSet
UnmodifiableShortSet. withoutAll(ShortIterable elements)
Constructors in org.eclipse.collections.impl.set.mutable.primitive with parameters of type ShortIterable Constructor Description ShortHashSet(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 class
AbstractShortSet
This file was automatically generated from template file abstractPrimitiveSet.stg. -
Uses of ShortIterable in org.eclipse.collections.impl.stack.immutable
Method parameters in org.eclipse.collections.impl.stack.immutable with type arguments of type ShortIterable Modifier and Type Method Description <R extends MutableShortCollection>
RImmutableArrayStack. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)
Deprecated.<R extends MutableShortCollection>
RImmutableEmptyStack. flatCollectShort(Function<? super T,? extends ShortIterable> function, R target)
-
Uses of ShortIterable in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement ShortIterable Modifier and Type Class Description (package private) class
ImmutableShortArrayStack
ImmutableShortArrayStack is the non-modifiable equivalent ofShortArrayStack
.(package private) class
ImmutableShortEmptyStack
ImmutableShortEmptyStack is an optimization forImmutableShortStack
of size 0.(package private) class
ImmutableShortSingletonStack
ImmutableShortSingletonStack is an optimization forImmutableShortStack
of size 1.Methods in org.eclipse.collections.impl.stack.immutable.primitive that return types with arguments of type ShortIterable Modifier and Type Method Description RichIterable<ShortIterable>
ImmutableShortEmptyStack. chunk(int size)
RichIterable<ShortIterable>
ImmutableShortSingletonStack. chunk(int size)
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type ShortIterable Modifier and Type Method Description boolean
ImmutableShortEmptyStack. containsAll(ShortIterable source)
boolean
ImmutableShortSingletonStack. containsAll(ShortIterable source)
static ImmutableShortArrayStack
ImmutableShortArrayStack. newStack(ShortIterable iterable)
static ImmutableShortArrayStack
ImmutableShortArrayStack. newStackFromTopToBottom(ShortIterable items)
ImmutableShortStack
ImmutableShortStackFactoryImpl. ofAll(ShortIterable items)
ImmutableShortStack
ImmutableShortStackFactoryImpl. ofAllReversed(ShortIterable items)
ImmutableShortStack
ImmutableShortStackFactoryImpl. withAll(ShortIterable items)
ImmutableShortStack
ImmutableShortStackFactoryImpl. 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 class
ShortArrayStack
ShortArrayStack is similar toArrayStack
, and is memory-optimized for short primitives.class
SynchronizedShortStack
A synchronized view of aMutableShortStack
.class
UnmodifiableShortStack
This file was automatically generated from template file unmodifiablePrimitiveStack.stg.Methods in org.eclipse.collections.impl.stack.mutable.primitive that return types with arguments of type 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 boolean
SynchronizedShortStack. containsAll(ShortIterable source)
boolean
UnmodifiableShortStack. containsAll(ShortIterable source)
static ShortArrayStack
ShortArrayStack. newStack(ShortIterable items)
static ShortArrayStack
ShortArrayStack. newStackFromTopToBottom(ShortIterable items)
MutableShortStack
MutableShortStackFactoryImpl. ofAll(ShortIterable items)
MutableShortStack
MutableShortStackFactoryImpl. ofAllReversed(ShortIterable items)
MutableShortStack
MutableShortStackFactoryImpl. withAll(ShortIterable items)
MutableShortStack
MutableShortStackFactoryImpl. 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 class
AbstractShortStack
This file was automatically generated from template file abstractPrimitiveStack.stg.Methods in org.eclipse.collections.impl.stack.primitive that return types with arguments of type 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 boolean
AbstractShortStack. 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 boolean
ShortIterableIterate. allSatisfy(ShortIterable iterable, ShortPredicate predicate)
static boolean
ShortIterableIterate. anySatisfy(ShortIterable iterable, ShortPredicate predicate)
static void
ShortIterableIterate. appendString(ShortIterable 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>>
RShortIterableIterate. collect(ShortIterable iterable, ShortToObjectFunction<? extends V> function, R targetCollection)
static int
ShortIterableIterate. count(ShortIterable iterable, ShortPredicate predicate)
static short
ShortIterableIterate. detectIfNone(ShortIterable iterable, ShortPredicate predicate, short ifNone)
static void
ShortIterableIterate. forEach(ShortIterable iterable, ShortProcedure procedure)
static <T> T
ShortIterableIterate. injectInto(ShortIterable iterable, T injectedValue, ObjectShortToObjectFunction<? super T,? extends T> function)
static boolean
ShortIterableIterate. isEmpty(ShortIterable iterable)
static short
ShortIterableIterate. max(ShortIterable iterable)
static short
ShortIterableIterate. maxIfEmpty(ShortIterable iterable, short ifEmpty)
static short
ShortIterableIterate. min(ShortIterable iterable)
static short
ShortIterableIterate. minIfEmpty(ShortIterable iterable, short ifEmpty)
static boolean
ShortIterableIterate. noneSatisfy(ShortIterable iterable, ShortPredicate predicate)
static boolean
ShortIterableIterate. 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)
private static <T> java.lang.String
ShortIterableIterate. stringValueOfItem(ShortIterable iterable, T item)
static long
ShortIterableIterate. 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 LazyShortIterable
LazyShortIterate. 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 java.lang.Iterable<V>> function)
Creates a deferred transforming and flattening short iterable for the specified short iterable.static LazyShortIterable
LazyShortIterate. select(ShortIterable iterable, ShortPredicate predicate)
Creates a deferred filtering short iterable for the specified short iterable.static LazyShortIterable
LazyShortIterate. tap(ShortIterable iterable, ShortProcedure procedure)
Creates a deferred tap iterable for the specified iterable.
-