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 theMutableBiMapinterface.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollectioninterface.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableListinterface.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMapinterface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.set.primitive org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStackinterface.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStackinterface.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive org.eclipse.collections.impl.utility.internal.primitive org.eclipse.collections.impl.utility.primitive -
-
Uses of 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 default booleanShortIterable. 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 booleanShortIterable. 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 booleanShortIterable. 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 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
Classes in org.eclipse.collections.impl.bag.immutable.primitive that implement ShortIterable Modifier and Type Class Description (package private) classImmutableShortEmptyBagImmutableShortEmptyBag is an optimization forImmutableShortBagof size 0.(package private) classImmutableShortHashBagImmutableShortHashBag is the non-modifiable equivalent ofShortHashBag.(package private) classImmutableShortSingletonBagImmutableShortSingletonBag is an optimization forImmutableShortBagof 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 booleanImmutableShortEmptyBag. containsAll(ShortIterable source)booleanImmutableShortHashBag. containsAll(ShortIterable source)booleanImmutableShortSingletonBag. containsAll(ShortIterable source)ImmutableShortBagImmutableShortEmptyBag. newWithAll(ShortIterable elements)ImmutableShortBagImmutableShortHashBag. newWithAll(ShortIterable elements)ImmutableShortBagImmutableShortSingletonBag. newWithAll(ShortIterable elements)ImmutableShortBagImmutableShortEmptyBag. newWithoutAll(ShortIterable elements)ImmutableShortBagImmutableShortHashBag. newWithoutAll(ShortIterable elements)ImmutableShortBagImmutableShortSingletonBag. newWithoutAll(ShortIterable elements)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>
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 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. containsAny(ShortIterable source)booleanAbstractUnmodifiableShortCollection. containsAny(ShortIterable source)booleanAbstractSynchronizedShortCollection. containsNone(ShortIterable source)booleanAbstractUnmodifiableShortCollection. containsNone(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.Fields in org.eclipse.collections.impl.lazy.primitive declared as ShortIterable Modifier and Type Field Description private ShortIterableChunkShortIterable. adaptedprivate ShortIterableTapShortIterable. adaptedprivate ShortIterableLazyShortIterableAdapter. delegateprivate ShortIterableSelectShortIterable. delegateprivate ShortIterableCollectShortToBooleanIterable. iterableprivate ShortIterableCollectShortToByteIterable. iterableprivate ShortIterableCollectShortToCharIterable. iterableprivate ShortIterableCollectShortToDoubleIterable. iterableprivate ShortIterableCollectShortToFloatIterable. iterableprivate ShortIterableCollectShortToIntIterable. iterableprivate ShortIterableCollectShortToLongIterable. iterableprivate ShortIterableCollectShortToObjectIterable. iterableprivate ShortIterableCollectShortToShortIterable. iterableprivate ShortIterableFlatCollectShortToObjectIterable. iterableMethods 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)java.util.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
Classes in org.eclipse.collections.impl.list.immutable.primitive that implement ShortIterable Modifier and Type Class Description (package private) classImmutableShortArrayListImmutableShortArrayList is the non-modifiable equivalent ofShortArrayList.(package private) classImmutableShortEmptyListImmutableShortEmptyList is an optimization forImmutableShortListof size 0.(package private) classImmutableShortSingletonListImmutableShortSingletonList is an optimization forImmutableShortListof 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 booleanImmutableShortArrayList. containsAll(ShortIterable source)booleanImmutableShortEmptyList. containsAll(ShortIterable source)booleanImmutableShortSingletonList. containsAll(ShortIterable source)static ImmutableShortArrayListImmutableShortArrayList. newList(ShortIterable iterable)ImmutableShortListImmutableShortArrayList. newWithAll(ShortIterable elements)ImmutableShortListImmutableShortEmptyList. newWithAll(ShortIterable elements)ImmutableShortListImmutableShortSingletonList. newWithAll(ShortIterable elements)ImmutableShortListImmutableShortArrayList. newWithoutAll(ShortIterable elements)ImmutableShortListImmutableShortEmptyList. newWithoutAll(ShortIterable elements)ImmutableShortListImmutableShortSingletonList. newWithoutAll(ShortIterable elements)ImmutableShortListImmutableShortListFactoryImpl. ofAll(ShortIterable items)ImmutableShortListImmutableShortListFactoryImpl. 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 classShortArrayListShortArrayList is similar to FastList, 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.(package private) classImmutableByteShortEmptyMapImmutableByteShortEmptyMap is an optimization forImmutableByteShortMapof size 0.(package private) classImmutableByteShortHashMapImmutableByteShortHashMap is the non-modifiable equivalent ofByteShortHashMap.(package private) classImmutableByteShortSingletonMapImmutableByteShortSingletonMap is an optimization forImmutableByteShortMapof size 1.(package private) classImmutableCharShortEmptyMapImmutableCharShortEmptyMap is an optimization forImmutableCharShortMapof size 0.(package private) classImmutableCharShortHashMapImmutableCharShortHashMap is the non-modifiable equivalent ofCharShortHashMap.(package private) classImmutableCharShortSingletonMapImmutableCharShortSingletonMap is an optimization forImmutableCharShortMapof size 1.(package private) classImmutableDoubleShortEmptyMapImmutableDoubleShortEmptyMap is an optimization forImmutableDoubleShortMapof size 0.(package private) classImmutableDoubleShortHashMapImmutableDoubleShortHashMap is the non-modifiable equivalent ofDoubleShortHashMap.(package private) classImmutableDoubleShortSingletonMapImmutableDoubleShortSingletonMap is an optimization forImmutableDoubleShortMapof size 1.(package private) classImmutableFloatShortEmptyMapImmutableFloatShortEmptyMap is an optimization forImmutableFloatShortMapof size 0.(package private) classImmutableFloatShortHashMapImmutableFloatShortHashMap is the non-modifiable equivalent ofFloatShortHashMap.(package private) classImmutableFloatShortSingletonMapImmutableFloatShortSingletonMap is an optimization forImmutableFloatShortMapof size 1.(package private) classImmutableIntShortEmptyMapImmutableIntShortEmptyMap is an optimization forImmutableIntShortMapof size 0.(package private) classImmutableIntShortHashMapImmutableIntShortHashMap is the non-modifiable equivalent ofIntShortHashMap.(package private) classImmutableIntShortSingletonMapImmutableIntShortSingletonMap is an optimization forImmutableIntShortMapof size 1.(package private) classImmutableLongShortEmptyMapImmutableLongShortEmptyMap is an optimization forImmutableLongShortMapof size 0.(package private) classImmutableLongShortHashMapImmutableLongShortHashMap is the non-modifiable equivalent ofLongShortHashMap.(package private) classImmutableLongShortSingletonMapImmutableLongShortSingletonMap is an optimization forImmutableLongShortMapof size 1.(package private) classImmutableObjectShortEmptyMap<K>ImmutableObjectShortEmptyMap is an optimization forImmutableObjectShortMapof size 0.(package private) classImmutableObjectShortHashMap<K>ImmutableObjectShortHashMap is the non-modifiable equivalent ofObjectShortHashMap.(package private) classImmutableObjectShortSingletonMap<K>ImmutableObjectShortSingletonMap is an optimization forImmutableObjectShortMapof size 1.(package private) classImmutableShortShortEmptyMapImmutableShortShortEmptyMap is an optimization forImmutableShortShortMapof size 0.(package private) classImmutableShortShortHashMapImmutableShortShortHashMap is the non-modifiable equivalent ofShortShortHashMap.(package private) classImmutableShortShortSingletonMapImmutableShortShortSingletonMap is an optimization forImmutableShortShortMapof 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 booleanImmutableByteShortEmptyMap. containsAll(ShortIterable source)booleanImmutableByteShortHashMap. containsAll(ShortIterable source)booleanImmutableByteShortSingletonMap. containsAll(ShortIterable source)booleanImmutableCharShortEmptyMap. containsAll(ShortIterable source)booleanImmutableCharShortHashMap. containsAll(ShortIterable source)booleanImmutableCharShortSingletonMap. containsAll(ShortIterable source)booleanImmutableDoubleShortEmptyMap. containsAll(ShortIterable source)booleanImmutableDoubleShortHashMap. containsAll(ShortIterable source)booleanImmutableDoubleShortSingletonMap. containsAll(ShortIterable source)booleanImmutableFloatShortEmptyMap. containsAll(ShortIterable source)booleanImmutableFloatShortHashMap. containsAll(ShortIterable source)booleanImmutableFloatShortSingletonMap. containsAll(ShortIterable source)booleanImmutableIntShortEmptyMap. containsAll(ShortIterable source)booleanImmutableIntShortHashMap. containsAll(ShortIterable source)booleanImmutableIntShortSingletonMap. containsAll(ShortIterable source)booleanImmutableLongShortEmptyMap. containsAll(ShortIterable source)booleanImmutableLongShortHashMap. containsAll(ShortIterable source)booleanImmutableLongShortSingletonMap. containsAll(ShortIterable source)booleanImmutableObjectShortEmptyMap. containsAll(ShortIterable source)booleanImmutableObjectShortHashMap. containsAll(ShortIterable source)booleanImmutableObjectShortSingletonMap. containsAll(ShortIterable source)booleanImmutableShortShortEmptyMap. containsAll(ShortIterable source)booleanImmutableShortShortHashMap. containsAll(ShortIterable source)booleanImmutableShortShortSingletonMap. containsAll(ShortIterable source)ImmutableShortBooleanMapImmutableShortBooleanEmptyMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortBooleanMapImmutableShortBooleanHashMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortBooleanMapImmutableShortBooleanSingletonMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortByteMapImmutableShortByteEmptyMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortByteMapImmutableShortByteHashMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortByteMapImmutableShortByteSingletonMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortCharMapImmutableShortCharEmptyMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortCharMapImmutableShortCharHashMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortCharMapImmutableShortCharSingletonMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortDoubleMapImmutableShortDoubleEmptyMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortDoubleMapImmutableShortDoubleHashMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortDoubleMapImmutableShortDoubleSingletonMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortFloatMapImmutableShortFloatEmptyMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortFloatMapImmutableShortFloatHashMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortFloatMapImmutableShortFloatSingletonMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortIntMapImmutableShortIntEmptyMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortIntMapImmutableShortIntHashMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortIntMapImmutableShortIntSingletonMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortLongMapImmutableShortLongEmptyMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortLongMapImmutableShortLongHashMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortLongMapImmutableShortLongSingletonMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortObjectMap<V>ImmutableShortObjectEmptyMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortObjectMap<V>ImmutableShortObjectHashMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortObjectMap<V>ImmutableShortObjectSingletonMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortShortMapImmutableShortShortEmptyMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortShortMapImmutableShortShortHashMap. newWithoutAllKeys(ShortIterable keys)ImmutableShortShortMapImmutableShortShortSingletonMap. 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 classAbstractMutableShortKeySetThis file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.classAbstractMutableShortValuesMapThis file was automatically generated from template file abstractMutablePrimitiveValuesMap.stg.protected classAbstractMutableShortValuesMap.AbstractShortValuesCollectionclassByteShortHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classByteShortHashMap.ValuesCollectionclassCharShortHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classCharShortHashMap.ValuesCollectionclassDoubleShortHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classDoubleShortHashMap.ValuesCollectionclassFloatShortHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classFloatShortHashMap.ValuesCollection(package private) classImmutableShortMapKeySetThis file was automatically generated from template file immutablePrimitiveMapKeySet.stg(package private) classImmutableShortShortMapKeySetThis file was automatically generated from template file immutablePrimitivePrimitiveMapKeySet.stgclassIntShortHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classIntShortHashMap.ValuesCollectionclassLongShortHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classLongShortHashMap.ValuesCollectionclassObjectShortHashMap<K>This file was automatically generated from template file objectPrimitiveHashMap.stg.private classObjectShortHashMap.ValuesCollectionclassObjectShortHashMapWithHashingStrategy<K>This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.private classObjectShortHashMapWithHashingStrategy.ValuesCollectionprivate classShortBooleanHashMap.KeySetprivate classShortBooleanHashMap.KeysViewprivate classShortByteHashMap.KeySetprivate classShortByteHashMap.KeysViewprivate classShortCharHashMap.KeySetprivate classShortCharHashMap.KeysViewprivate classShortDoubleHashMap.KeySetprivate classShortDoubleHashMap.KeysViewprivate classShortFloatHashMap.KeySetprivate classShortFloatHashMap.KeysViewprivate classShortIntHashMap.KeySetprivate classShortIntHashMap.KeysViewprivate classShortLongHashMap.KeySetprivate classShortLongHashMap.KeysViewprivate classShortObjectHashMap.KeySetprivate classShortObjectHashMap.KeysViewclassShortShortHashMapThis file was automatically generated from template file primitivePrimitiveHashMap.stg.private classShortShortHashMap.KeySetprivate classShortShortHashMap.KeysViewprivate classShortShortHashMap.ValuesCollectionclassSynchronizedByteShortMapA 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.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 booleanAbstractMutableShortKeySet. addAll(ShortIterable source)booleanAbstractMutableShortValuesMap.AbstractShortValuesCollection. addAll(ShortIterable source)booleanObjectShortHashMap.ValuesCollection. addAll(ShortIterable source)booleanObjectShortHashMapWithHashingStrategy.ValuesCollection. addAll(ShortIterable source)booleanAbstractMutableShortKeySet. containsAll(ShortIterable source)booleanAbstractMutableShortValuesMap.AbstractShortValuesCollection. containsAll(ShortIterable source)booleanAbstractMutableShortValuesMap. containsAll(ShortIterable source)booleanObjectShortHashMap. containsAll(ShortIterable source)booleanObjectShortHashMap.ValuesCollection. containsAll(ShortIterable source)booleanObjectShortHashMapWithHashingStrategy. containsAll(ShortIterable source)booleanObjectShortHashMapWithHashingStrategy.ValuesCollection. containsAll(ShortIterable source)booleanShortBooleanHashMap.KeysView. 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)booleanAbstractMutableShortValuesMap.AbstractShortValuesCollection. removeAll(ShortIterable source)booleanObjectShortHashMap.ValuesCollection. removeAll(ShortIterable source)booleanObjectShortHashMapWithHashingStrategy.ValuesCollection. removeAll(ShortIterable source)booleanByteShortHashMap.ValuesCollection. retainAll(ShortIterable source)booleanCharShortHashMap.ValuesCollection. retainAll(ShortIterable source)booleanDoubleShortHashMap.ValuesCollection. retainAll(ShortIterable source)booleanFloatShortHashMap.ValuesCollection. retainAll(ShortIterable source)booleanIntShortHashMap.ValuesCollection. retainAll(ShortIterable source)booleanLongShortHashMap.ValuesCollection. retainAll(ShortIterable source)booleanObjectShortHashMap.ValuesCollection. retainAll(ShortIterable source)booleanObjectShortHashMapWithHashingStrategy.ValuesCollection. retainAll(ShortIterable source)booleanShortBooleanHashMap.KeySet. retainAll(ShortIterable source)booleanShortByteHashMap.KeySet. retainAll(ShortIterable source)booleanShortCharHashMap.KeySet. retainAll(ShortIterable source)booleanShortDoubleHashMap.KeySet. retainAll(ShortIterable source)booleanShortFloatHashMap.KeySet. retainAll(ShortIterable source)booleanShortIntHashMap.KeySet. retainAll(ShortIterable source)booleanShortLongHashMap.KeySet. retainAll(ShortIterable source)booleanShortObjectHashMap.KeySet. retainAll(ShortIterable source)booleanShortShortHashMap.KeySet. retainAll(ShortIterable source)booleanShortShortHashMap.ValuesCollection. retainAll(ShortIterable source)MutableShortSetAbstractMutableShortKeySet. withAll(ShortIterable elements)MutableShortCollectionAbstractMutableShortValuesMap.AbstractShortValuesCollection. withAll(ShortIterable elements)MutableShortCollectionObjectShortHashMap.ValuesCollection. withAll(ShortIterable elements)MutableShortCollectionObjectShortHashMapWithHashingStrategy.ValuesCollection. withAll(ShortIterable elements)MutableShortSetAbstractMutableShortKeySet. withoutAll(ShortIterable elements)MutableShortCollectionAbstractMutableShortValuesMap.AbstractShortValuesCollection. withoutAll(ShortIterable elements)MutableShortCollectionObjectShortHashMap.ValuesCollection. withoutAll(ShortIterable elements)MutableShortCollectionObjectShortHashMapWithHashingStrategy.ValuesCollection. 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.Fields in org.eclipse.collections.impl.primitive declared as ShortIterable Modifier and Type Field Description private ShortIterableSynchronizedShortIterable. iterableMethods 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 booleanSynchronizedShortIterable. containsAll(ShortIterable source)booleanSynchronizedShortIterable. containsAny(ShortIterable source)booleanSynchronizedShortIterable. containsNone(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, 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 classAbstractImmutableShortSetThis file was automatically generated from template file abstractImmutablePrimitiveSet.stg.(package private) classImmutableShortEmptySetImmutableShortEmptySet is an optimization forImmutableShortSetof size 0.(package private) classImmutableShortSingletonSetImmutableShortSingletonSet is an optimization forImmutableShortSetof 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 booleanImmutableShortEmptySet. containsAll(ShortIterable source)booleanImmutableShortSingletonSet. containsAll(ShortIterable source)ImmutableShortSetAbstractImmutableShortSet. newWithAll(ShortIterable elements)ImmutableShortSetImmutableShortEmptySet. newWithAll(ShortIterable elements)ImmutableShortSetImmutableShortSingletonSet. newWithAll(ShortIterable elements)ImmutableShortSetAbstractImmutableShortSet. newWithoutAll(ShortIterable elements)ImmutableShortSetImmutableShortEmptySet. newWithoutAll(ShortIterable elements)ImmutableShortSetImmutableShortSingletonSet. 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.private static classShortHashSet.ImmutableShortHashSetclassSynchronizedShortSetA 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)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 classAbstractShortSetThis 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) classImmutableShortArrayStackImmutableShortArrayStack is the non-modifiable equivalent ofShortArrayStack.(package private) classImmutableShortEmptyStackImmutableShortEmptyStack is an optimization forImmutableShortStackof size 0.(package private) classImmutableShortSingletonStackImmutableShortSingletonStack is an optimization forImmutableShortStackof 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 booleanImmutableShortEmptyStack. containsAll(ShortIterable source)booleanImmutableShortSingletonStack. containsAll(ShortIterable source)static ImmutableShortArrayStackImmutableShortArrayStack. newStack(ShortIterable iterable)static ImmutableShortArrayStackImmutableShortArrayStack. newStackFromTopToBottom(ShortIterable items)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, 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 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)private static <T> java.lang.StringShortIterableIterate. stringValueOfItem(ShortIterable iterable, T item)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 java.lang.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.
-