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
public interface ShortIterable extends PrimitiveIterable
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 Type Method Description boolean
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.LazyShortIterable
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.boolean
containsAll(short... source)
Returns true if the all of the values specified in the source array are contained in the ShortIterable, and false if they are not.boolean
containsAll(ShortIterable source)
Returns true if the all of the values specified in the source ShortIterable are contained in the ShortIterable, and false if they are not.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)
.void
forEach(ShortProcedure procedure)
Applies the ShortProcedure to each element in the ShortIterable.<T> T
injectInto(T injectedValue, ObjectShortToObjectFunction<? super T,? extends T> function)
short
max()
short
maxIfEmpty(short defaultValue)
double
median()
default double
medianIfEmpty(double defaultValue)
short
min()
short
minIfEmpty(short defaultValue)
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)
ShortIterable
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.ShortIterable
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.ShortIterator
shortIterator()
Returns a primitive iterator that can be used to iterate over the ShortIterable in an imperative style.long
sum()
default IntSummaryStatistics
summaryStatistics()
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.MutableShortBag
toBag()
Converts the ShortIterable to a new MutableShortBag.MutableShortList
toList()
Converts the ShortIterable to a new MutableShortList.MutableShortSet
toSet()
Converts the ShortIterable to a new MutableShortSet.short[]
toSortedArray()
MutableShortList
toSortedList()
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
boolean containsAll(short... source)Returns true if the all of the values specified in the source array are contained in the ShortIterable, and false if they are not. -
containsAll
Returns true if the all of the values specified in the source ShortIterable are contained in the ShortIterable, and false if they are not. -
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
-
reduceIfEmpty
- Since:
- 10.0
- See Also:
reduce(LongShortToLongFunction)
-
reduce
- Since:
- 10.0
- See Also:
RichIterable.reduce(BinaryOperator)
-
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()
-