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 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

      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.
    • 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

      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.
      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

      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.
      Since:
      11.0
    • forEach

      void forEach(ShortProcedure procedure)
      Applies the ShortProcedure to each element in the ShortIterable.
    • each

      void each(ShortProcedure procedure)
      A synonym for forEach.
      Since:
      7.0.
    • tap

      default ShortIterable tap(ShortProcedure procedure)
      Since:
      9.0.
    • select

      ShortIterable select(ShortPredicate predicate)
      Returns a new ShortIterable with all of the elements in the ShortIterable that return true for the specified predicate.
    • reject

      ShortIterable reject(ShortPredicate predicate)
      Returns a new ShortIterable with all of the elements in the ShortIterable that return false for the specified predicate.
    • select

      default <R extends MutableShortCollection> R select(ShortPredicate predicate, R target)
      Same as select(ShortPredicate) , only the results are added to the target MutableShortCollection.
      Since:
      8.1.
    • reject

      default <R extends MutableShortCollection> R reject(ShortPredicate predicate, R target)
      Same as reject(ShortPredicate) , only the results are added to the target MutableShortCollection.
      Since:
      8.1.
    • collect

      <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. 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 as collect(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 of collect(ShortToObjectFunction). With collect, when the ShortToObjectFunction 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 target MutableBooleanCollection with the results of applying the specified function on each element of the source collection.
      Since:
      8.1.
    • collectByte

      default <R extends MutableByteCollection> R collectByte(ShortToByteFunction function, R target)
      Returns the target MutableByteCollection with the results of applying the specified function on each element of the source collection.
      Since:
      8.1.
    • collectChar

      default <R extends MutableCharCollection> R collectChar(ShortToCharFunction function, R target)
      Returns the target MutableCharCollection with the results of applying the specified function on each element of the source collection.
      Since:
      8.1.
    • collectShort

      default <R extends MutableShortCollection> R collectShort(ShortToShortFunction function, R target)
      Returns the target MutableShortCollection with the results of applying the specified function on each element of the source collection.
      Since:
      8.1.
    • collectInt

      default <R extends MutableIntCollection> R collectInt(ShortToIntFunction function, R target)
      Returns the target MutableIntCollection with the results of applying the specified function on each element of the source collection.
      Since:
      8.1.
    • collectFloat

      default <R extends MutableFloatCollection> R collectFloat(ShortToFloatFunction function, R target)
      Returns the target MutableFloatCollection with the results of applying the specified function on each element of the source collection.
      Since:
      8.1.
    • collectLong

      default <R extends MutableLongCollection> R collectLong(ShortToLongFunction function, R target)
      Returns the target MutableLongCollection 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 target MutableDoubleCollection with the results of applying the specified function on each element of the source collection.
      Since:
      8.1.
    • detectIfNone

      short detectIfNone(ShortPredicate predicate, short ifNone)
    • count

      int count(ShortPredicate predicate)
      Returns a count of the number of elements in the ShortIterable that return true for the specified predicate.
    • anySatisfy

      boolean anySatisfy(ShortPredicate predicate)
      Returns true if any of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.
    • allSatisfy

      boolean allSatisfy(ShortPredicate predicate)
      Returns true if all of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.
    • noneSatisfy

      boolean noneSatisfy(ShortPredicate predicate)
      Returns true if none of the elements in the ShortIterable return true for the specified predicate, otherwise returns false.
    • toList

      Converts the ShortIterable to a new MutableShortList.
    • toSet

      Converts the ShortIterable to a new MutableShortSet.
    • toBag

      Converts the ShortIterable to a new MutableShortBag.
    • asLazy

      Returns a LazyShortIterable adapter wrapping the source ShortIterable.
    • injectInto

      <T> T injectInto(T injectedValue, ObjectShortToObjectFunction<? super T,? extends T> function)
    • reduceIfEmpty

      default long reduceIfEmpty(LongShortToLongFunction accumulator, long defaultValue)
      Since:
      10.0
      See Also:
    • reduce

      default long reduce(LongShortToLongFunction accumulator)
      Since:
      10.0
      See Also:
    • chunk

      default RichIterable<ShortIterable> chunk(int size)
      Partitions elements in fixed size chunks.
      Parameters:
      size - the number of elements per chunk
      Returns:
      A RichIterable containing ShortIterables of size size, except the last will be truncated if the elements don't divide evenly.
      Since:
      9.2
    • sum

      long sum()
    • summaryStatistics

      default IntSummaryStatistics 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

      default MutableShortList toSortedList(ShortComparator comparator)
      Converts the collection to a MutableShortList implementation sorted using the provided comparator.
    • toSortedListBy

      default <T> MutableShortList toSortedListBy(ShortToObjectFunction<T> function)
      Converts the collection to a MutableShortListImplementation sorted based on the natural order of the key returned by function.
    • 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 by function using the provided comparator.