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 TypeMethodDescriptionbooleanallSatisfy(ShortPredicate predicate) Returns true if all of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.booleananySatisfy(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.doubleaverage()default doubleaverageIfEmpty(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 targetMutableBooleanCollectionwith 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 targetMutableByteCollectionwith 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 targetMutableCharCollectionwith 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 targetMutableDoubleCollectionwith 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 targetMutableFloatCollectionwith 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 targetMutableIntCollectionwith 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 targetMutableLongCollectionwith 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 targetMutableShortCollectionwith the results of applying the specified function on each element of the source collection.booleancontains(short value) Returns true if the value is contained in the ShortIterable, and false if it is not.default booleancontainsAll(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 booleancontainsAll(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 booleancontainsAny(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 booleancontainsAny(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 booleancontainsNone(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 booleancontainsNone(ShortIterable source) Returns true if none of the values specified in the source ShortIterable are contained in the ShortIterable, and false if they are.intcount(ShortPredicate predicate) Returns a count of the number of elements in the ShortIterable that return true for the specified predicate.shortdetectIfNone(ShortPredicate predicate, short ifNone) voideach(ShortProcedure procedure) A synonym for forEach.default <V,R extends Collection<V>>
RflatCollect(ShortToObjectFunction<? extends Iterable<V>> function, R target) flatCollectis a special case ofcollect(ShortToObjectFunction).voidforEach(ShortProcedure procedure) Applies the ShortProcedure to each element in the ShortIterable.<T> TinjectInto(T injectedValue, ObjectShortToObjectFunction<? super T, ? extends T> function) shortmax()shortmaxIfEmpty(short defaultValue) doublemedian()default doublemedianIfEmpty(double defaultValue) shortmin()shortminIfEmpty(short defaultValue) booleannoneSatisfy(ShortPredicate predicate) Returns true if none of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.default longreduce(LongShortToLongFunction accumulator) default longreduceIfEmpty(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.longsum()default IntSummaryStatisticsdefault ShortIterabletap(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 MutableShortListtoSortedList(ShortComparator comparator) Converts the collection to a MutableShortList implementation sorted using the provided comparator.default <T> MutableShortListtoSortedListBy(ShortToObjectFunction<T> function) Converts the collection to a MutableShortListImplementation sorted based on the natural order of the key returned byfunction.default <T> MutableShortListtoSortedListBy(ShortToObjectFunction<T> function, Comparator<? super T> comparator) Converts the collection to a MutableShortList implementation, which is sorted based on the key returned byfunctionusing 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) flatCollectis a special case ofcollect(ShortToObjectFunction). Withcollect, when theShortToObjectFunctionreturns a collection, the result is a collection of collections.flatCollectoutputs 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 targetMutableBooleanCollectionwith the results of applying the specified function on each element of the source collection.- Since:
- 8.1.
-
collectByte
Returns the targetMutableByteCollectionwith the results of applying the specified function on each element of the source collection.- Since:
- 8.1.
-
collectChar
Returns the targetMutableCharCollectionwith the results of applying the specified function on each element of the source collection.- Since:
- 8.1.
-
collectShort
Returns the targetMutableShortCollectionwith the results of applying the specified function on each element of the source collection.- Since:
- 8.1.
-
collectInt
Returns the targetMutableIntCollectionwith the results of applying the specified function on each element of the source collection.- Since:
- 8.1.
-
collectFloat
Returns the targetMutableFloatCollectionwith the results of applying the specified function on each element of the source collection.- Since:
- 8.1.
-
collectLong
Returns the targetMutableLongCollectionwith 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 targetMutableDoubleCollectionwith 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
- Since:
- 10.0
- See Also:
-
chunk
Partitions elements in fixed size chunks.- Parameters:
size- the number of elements per chunk- Returns:
- A
RichIterablecontainingShortIterables 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 byfunctionusing the providedcomparator.
-