Package org.eclipse.collections.api
Interface ShortIterable
- All Superinterfaces:
PrimitiveIterable
- All Known Subinterfaces:
ByteShortMap
,CharShortMap
,DoubleShortMap
,FloatShortMap
,ImmutableByteShortMap
,ImmutableCharShortMap
,ImmutableDoubleShortMap
,ImmutableFloatShortMap
,ImmutableIntShortMap
,ImmutableLongShortMap
,ImmutableObjectShortMap<K>
,ImmutableShortBag
,ImmutableShortCollection
,ImmutableShortList
,ImmutableShortSet
,ImmutableShortShortMap
,ImmutableShortStack
,IntShortMap
,LazyShortIterable
,LongShortMap
,MutableByteShortMap
,MutableCharShortMap
,MutableDoubleShortMap
,MutableFloatShortMap
,MutableIntShortMap
,MutableLongShortMap
,MutableObjectShortMap<K>
,MutableShortBag
,MutableShortCollection
,MutableShortList
,MutableShortSet
,MutableShortShortMap
,MutableShortStack
,MutableShortValuesMap
,ObjectShortMap<K>
,OrderedShortIterable
,ReversibleShortIterable
,ShortBag
,ShortList
,ShortSet
,ShortShortMap
,ShortStack
,ShortValuesMap
- All Known Implementing Classes:
AbstractImmutableObjectShortMap
,AbstractImmutableShortSet
,AbstractLazyShortIterable
,AbstractMutableShortKeySet
,AbstractMutableShortValuesMap
,AbstractShortIterable
,AbstractShortSet
,AbstractShortStack
,AbstractSynchronizedShortCollection
,AbstractUnmodifiableShortCollection
,ByteShortHashMap
,CharShortHashMap
,CollectBooleanToShortIterable
,CollectByteToShortIterable
,CollectCharToShortIterable
,CollectDoubleToShortIterable
,CollectFloatToShortIterable
,CollectIntToShortIterable
,CollectLongToShortIterable
,CollectShortIterable
,CollectShortToShortIterable
,DoubleShortHashMap
,FloatShortHashMap
,IntShortHashMap
,LazyShortIterableAdapter
,LongShortHashMap
,ObjectShortHashMap
,ObjectShortHashMapWithHashingStrategy
,ReverseShortIterable
,SelectShortIterable
,ShortArrayList
,ShortArrayStack
,ShortHashBag
,ShortHashSet
,ShortShortHashMap
,SynchronizedByteShortMap
,SynchronizedCharShortMap
,SynchronizedDoubleShortMap
,SynchronizedFloatShortMap
,SynchronizedIntShortMap
,SynchronizedLongShortMap
,SynchronizedObjectShortMap
,SynchronizedShortBag
,SynchronizedShortCollection
,SynchronizedShortIterable
,SynchronizedShortList
,SynchronizedShortSet
,SynchronizedShortShortMap
,SynchronizedShortStack
,TapShortIterable
,UnmodifiableByteShortMap
,UnmodifiableCharShortMap
,UnmodifiableDoubleShortMap
,UnmodifiableFloatShortMap
,UnmodifiableIntShortMap
,UnmodifiableLongShortMap
,UnmodifiableObjectShortMap
,UnmodifiableShortBag
,UnmodifiableShortCollection
,UnmodifiableShortList
,UnmodifiableShortSet
,UnmodifiableShortShortMap
,UnmodifiableShortStack
ShortIterable is an interface which is memory-optimized for short primitives.
It is inspired by the interface RichIterable, and contains a subset of the internal iterator methods on RichIterable like collect, sum, etc.
The API also includes an external iterator method, which returns an ShortIterator. ShortIterator helps iterate over the ShortIterable without boxing the primitives.
This file was automatically generated from template file primitiveIterable.stg.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
allSatisfy
(ShortPredicate predicate) Returns true if all of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.boolean
anySatisfy
(ShortPredicate predicate) Returns true if any of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.asLazy()
Returns a LazyShortIterable adapter wrapping the source ShortIterable.double
average()
default double
averageIfEmpty
(double defaultValue) default RichIterable<ShortIterable>
chunk
(int size) Partitions elements in fixed size chunks.<V> RichIterable<V>
collect
(ShortToObjectFunction<? extends V> function) Returns a new collection with the results of applying the specified function on each element of the source collection.default <V,
R extends Collection<V>>
Rcollect
(ShortToObjectFunction<? extends V> function, R target) Same ascollect(ShortToObjectFunction)
, only the results are added to the target Collection.default <R extends MutableBooleanCollection>
RcollectBoolean
(ShortToBooleanFunction function, R target) Returns the targetMutableBooleanCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableByteCollection>
RcollectByte
(ShortToByteFunction function, R target) Returns the targetMutableByteCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableCharCollection>
RcollectChar
(ShortToCharFunction function, R target) Returns the targetMutableCharCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableDoubleCollection>
RcollectDouble
(ShortToDoubleFunction function, R target) Returns the targetMutableDoubleCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableFloatCollection>
RcollectFloat
(ShortToFloatFunction function, R target) Returns the targetMutableFloatCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableIntCollection>
RcollectInt
(ShortToIntFunction function, R target) Returns the targetMutableIntCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableLongCollection>
RcollectLong
(ShortToLongFunction function, R target) Returns the targetMutableLongCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableShortCollection>
RcollectShort
(ShortToShortFunction function, R target) Returns the targetMutableShortCollection
with the results of applying the specified function on each element of the source collection.boolean
contains
(short value) Returns true if the value is contained in the ShortIterable, and false if it is not.default boolean
containsAll
(short... source) Returns true if all of the values specified in the source array are contained in the ShortIterable, and false if they are not.default boolean
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
containsAny
(short... source) Returns true if any of the values specified in the source array are contained in the ShortIterable, and false if they are not.default boolean
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
containsNone
(short... source) Returns true if none of the values specified in the source array are contained in the ShortIterable, and false if they are.default boolean
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.int
count
(ShortPredicate predicate) Returns a count of the number of elements in the ShortIterable that return true for the specified predicate.short
detectIfNone
(ShortPredicate predicate, short ifNone) void
each
(ShortProcedure procedure) A synonym for forEach.default <V,
R extends Collection<V>>
RflatCollect
(ShortToObjectFunction<? extends Iterable<V>> function, R target) flatCollect
is a special case ofcollect(ShortToObjectFunction)
.default void
forEach
(ShortProcedure procedure) Applies the ShortProcedure to each element in the ShortIterable.<T> T
injectInto
(T injectedValue, ObjectShortToObjectFunction<? super T, ? extends T> function) default boolean
injectIntoBoolean
(boolean injectedValue, BooleanShortToBooleanFunction function) Returns the final boolean result of evaluating function using each element of the iterable and the previous evaluation result as the parameters.default byte
injectIntoByte
(byte injectedValue, ByteShortToByteFunction function) Returns the final byte result of evaluating function using each element of the iterable and the previous evaluation result as the parameters.default char
injectIntoChar
(char injectedValue, CharShortToCharFunction function) Returns the final char result of evaluating function using each element of the iterable and the previous evaluation result as the parameters.default double
injectIntoDouble
(double injectedValue, DoubleShortToDoubleFunction function) Returns the final double result of evaluating function using each element of the iterable and the previous evaluation result as the parameters.default float
injectIntoFloat
(float injectedValue, FloatShortToFloatFunction function) Returns the final float result of evaluating function using each element of the iterable and the previous evaluation result as the parameters.default int
injectIntoInt
(int injectedValue, IntShortToIntFunction function) Returns the final int result of evaluating function using each element of the iterable and the previous evaluation result as the parameters.default long
injectIntoLong
(long injectedValue, LongShortToLongFunction function) Returns the final long result of evaluating function using each element of the iterable and the previous evaluation result as the parameters.default short
injectIntoShort
(short injectedValue, ShortShortToShortFunction function) Returns the final short result of evaluating function using each element of the iterable and the previous evaluation result as the parameters.short
max()
short
maxIfEmpty
(short defaultValue) double
median()
default double
medianIfEmpty
(double defaultValue) short
min()
short
minIfEmpty
(short defaultValue) default boolean
noneSatisfy
(ShortPredicate predicate) Returns true if none of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.default long
reduce
(LongShortToLongFunction accumulator) default long
reduceIfEmpty
(LongShortToLongFunction accumulator, long defaultValue) reject
(ShortPredicate predicate) Returns a new ShortIterable with all of the elements in the ShortIterable that return false for the specified predicate.default <R extends MutableShortCollection>
Rreject
(ShortPredicate predicate, R target) Same asreject(ShortPredicate)
, only the results are added to the target MutableShortCollection.select
(ShortPredicate predicate) Returns a new ShortIterable with all of the elements in the ShortIterable that return true for the specified predicate.default <R extends MutableShortCollection>
Rselect
(ShortPredicate predicate, R target) Same asselect(ShortPredicate)
, only the results are added to the target MutableShortCollection.Returns a primitive iterator that can be used to iterate over the ShortIterable in an imperative style.long
sum()
default IntSummaryStatistics
default ShortIterable
tap
(ShortProcedure procedure) short[]
toArray()
Converts the ShortIterable to a primitive short array.default short[]
toArray
(short[] target) Converts the ShortIterable to a primitive short array.toBag()
Converts the ShortIterable to a new MutableShortBag.toList()
Converts the ShortIterable to a new MutableShortList.toSet()
Converts the ShortIterable to a new MutableShortSet.short[]
default MutableShortList
toSortedList
(ShortComparator comparator) Converts the collection to a MutableShortList implementation sorted using the provided comparator.default <T> MutableShortList
toSortedListBy
(ShortToObjectFunction<T> function) Converts the collection to a MutableShortListImplementation sorted based on the natural order of the key returned byfunction
.default <T> MutableShortList
toSortedListBy
(ShortToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableShortList implementation, which is sorted based on the key returned byfunction
using the providedcomparator
.Methods inherited from interface org.eclipse.collections.api.PrimitiveIterable
appendString, appendString, appendString, isEmpty, makeString, makeString, makeString, notEmpty, size, toString
-
Method Details
-
shortIterator
ShortIterator shortIterator()Returns a primitive iterator that can be used to iterate over the ShortIterable in an imperative style. -
toArray
short[] toArray()Converts the ShortIterable to a primitive short array. -
toArray
default short[] toArray(short[] target) Converts the ShortIterable to a primitive short array. If the collection fits into the provided array it is used to store its elements and is returned from the method, otherwise a new array of the appropriate size is allocated and returned. If the iterable is empty, the target array is returned unchanged. -
contains
boolean contains(short value) Returns true if the value is contained in the ShortIterable, and false if it is not. -
containsAll
default boolean containsAll(short... source) Returns true if all of the values specified in the source array are contained in the ShortIterable, and false if they are not. -
containsAll
Returns true if all of the values specified in the source ShortIterable are contained in the ShortIterable, and false if they are not. -
containsAny
default boolean containsAny(short... source) Returns true if any of the values specified in the source array are contained in the ShortIterable, and false if they are not.- Since:
- 11.0
-
containsAny
Returns true if any of the values specified in the source ShortIterable are contained in the ShortIterable, and false if they are not.- Since:
- 11.0
-
containsNone
default boolean containsNone(short... source) Returns true if none of the values specified in the source array are contained in the ShortIterable, and false if they are.- Since:
- 11.0
-
containsNone
Returns true if none of the values specified in the source ShortIterable are contained in the ShortIterable, and false if they are.- Since:
- 11.0
-
forEach
Applies the ShortProcedure to each element in the ShortIterable. -
each
A synonym for forEach.- Since:
- 7.0.
-
tap
- Since:
- 9.0.
-
select
Returns a new ShortIterable with all of the elements in the ShortIterable that return true for the specified predicate. -
reject
Returns a new ShortIterable with all of the elements in the ShortIterable that return false for the specified predicate. -
select
Same asselect(ShortPredicate)
, only the results are added to the target MutableShortCollection.- Since:
- 8.1.
-
reject
Same asreject(ShortPredicate)
, only the results are added to the target MutableShortCollection.- Since:
- 8.1.
-
collect
Returns a new collection with the results of applying the specified function on each element of the source collection. This method is also commonly called transform or map. -
collect
default <V,R extends Collection<V>> R collect(ShortToObjectFunction<? extends V> function, R target) Same ascollect(ShortToObjectFunction)
, only the results are added to the target Collection.- Since:
- 8.1.
-
flatCollect
default <V,R extends Collection<V>> R flatCollect(ShortToObjectFunction<? extends Iterable<V>> function, R target) flatCollect
is a special case ofcollect(ShortToObjectFunction)
. Withcollect
, when theShortToObjectFunction
returns a collection, the result is a collection of collections.flatCollect
outputs a single "flattened" collection instead. This method is commonly called flatMap.- Since:
- 8.1.
-
collectBoolean
default <R extends MutableBooleanCollection> R collectBoolean(ShortToBooleanFunction function, R target) Returns the targetMutableBooleanCollection
with the results of applying the specified function on each element of the source collection.- Since:
- 8.1.
-
collectByte
Returns the targetMutableByteCollection
with the results of applying the specified function on each element of the source collection.- Since:
- 8.1.
-
collectChar
Returns the targetMutableCharCollection
with the results of applying the specified function on each element of the source collection.- Since:
- 8.1.
-
collectShort
Returns the targetMutableShortCollection
with the results of applying the specified function on each element of the source collection.- Since:
- 8.1.
-
collectInt
Returns the targetMutableIntCollection
with the results of applying the specified function on each element of the source collection.- Since:
- 8.1.
-
collectFloat
Returns the targetMutableFloatCollection
with the results of applying the specified function on each element of the source collection.- Since:
- 8.1.
-
collectLong
Returns the targetMutableLongCollection
with the results of applying the specified function on each element of the source collection.- Since:
- 8.1.
-
collectDouble
default <R extends MutableDoubleCollection> R collectDouble(ShortToDoubleFunction function, R target) Returns the targetMutableDoubleCollection
with the results of applying the specified function on each element of the source collection.- Since:
- 8.1.
-
detectIfNone
-
count
Returns a count of the number of elements in the ShortIterable that return true for the specified predicate. -
anySatisfy
Returns true if any of the elements in the ShortIterable return true for the specified predicate, otherwise returns false. -
allSatisfy
Returns true if all of the elements in the ShortIterable return true for the specified predicate, otherwise returns false. -
noneSatisfy
Returns true if none of the elements in the ShortIterable return true for the specified predicate, otherwise returns false. -
toList
MutableShortList toList()Converts the ShortIterable to a new MutableShortList. -
toSet
MutableShortSet toSet()Converts the ShortIterable to a new MutableShortSet. -
toBag
MutableShortBag toBag()Converts the ShortIterable to a new MutableShortBag. -
asLazy
LazyShortIterable asLazy()Returns a LazyShortIterable adapter wrapping the source ShortIterable. -
injectInto
-
injectIntoBoolean
Returns the final boolean result of evaluating function using each element of the iterable and the previous evaluation result as the parameters. The injected value is used for the first parameter of the first evaluation, and the current item in the iterable is used as the second parameter.- Since:
- 11.1
-
injectIntoByte
Returns the final byte result of evaluating function using each element of the iterable and the previous evaluation result as the parameters. The injected value is used for the first parameter of the first evaluation, and the current item in the iterable is used as the second parameter.- Since:
- 11.1
-
injectIntoChar
Returns the final char result of evaluating function using each element of the iterable and the previous evaluation result as the parameters. The injected value is used for the first parameter of the first evaluation, and the current item in the iterable is used as the second parameter.- Since:
- 11.1
-
injectIntoShort
Returns the final short result of evaluating function using each element of the iterable and the previous evaluation result as the parameters. The injected value is used for the first parameter of the first evaluation, and the current item in the iterable is used as the second parameter.- Since:
- 11.1
-
injectIntoInt
Returns the final int result of evaluating function using each element of the iterable and the previous evaluation result as the parameters. The injected value is used for the first parameter of the first evaluation, and the current item in the iterable is used as the second parameter.- Since:
- 11.1
-
injectIntoFloat
Returns the final float result of evaluating function using each element of the iterable and the previous evaluation result as the parameters. The injected value is used for the first parameter of the first evaluation, and the current item in the iterable is used as the second parameter.- Since:
- 11.1
-
injectIntoLong
Returns the final long result of evaluating function using each element of the iterable and the previous evaluation result as the parameters. The injected value is used for the first parameter of the first evaluation, and the current item in the iterable is used as the second parameter.- Since:
- 11.1
-
injectIntoDouble
Returns the final double result of evaluating function using each element of the iterable and the previous evaluation result as the parameters. The injected value is used for the first parameter of the first evaluation, and the current item in the iterable is used as the second parameter.- Since:
- 11.1
-
reduceIfEmpty
- Since:
- 10.0
- See Also:
-
reduce
- Since:
- 10.0
- See Also:
-
chunk
Partitions elements in fixed size chunks.- Parameters:
size
- the number of elements per chunk- Returns:
- A
RichIterable
containingShortIterable
s of sizesize
, except the last will be truncated if the elements don't divide evenly. - Since:
- 9.2
-
sum
long sum() -
summaryStatistics
- Since:
- 8.0
-
max
short max() -
maxIfEmpty
short maxIfEmpty(short defaultValue) -
min
short min() -
minIfEmpty
short minIfEmpty(short defaultValue) -
average
double average() -
averageIfEmpty
default double averageIfEmpty(double defaultValue) - Since:
- 9.0
-
median
double median() -
medianIfEmpty
default double medianIfEmpty(double defaultValue) - Since:
- 9.0
-
toSortedArray
short[] toSortedArray() -
toSortedList
MutableShortList toSortedList() -
toSortedList
Converts the collection to a MutableShortList implementation sorted using the provided comparator. -
toSortedListBy
Converts the collection to a MutableShortListImplementation sorted based on the natural order of the key returned byfunction
. -
toSortedListBy
default <T> MutableShortList toSortedListBy(ShortToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableShortList implementation, which is sorted based on the key returned byfunction
using the providedcomparator
.
-