Interface Batch<T>

    • Method Detail

      • forEach

        void forEach​(Procedure<? super T> procedure)
      • collect

        <V> Batch<V> collect​(Function<? super T,​? extends V> function)
      • flatCollect

        <V> Batch<V> flatCollect​(Function<? super T,​? extends java.lang.Iterable<V>> function)
      • count

        int count​(Predicate<? super T> predicate)
      • makeString

        java.lang.String makeString​(java.lang.String separator)
      • min

        T min​(java.util.Comparator<? super T> comparator)
      • max

        T max​(java.util.Comparator<? super T> comparator)
      • minBy

        <V extends java.lang.Comparable<? super V>> T minBy​(Function<? super T,​? extends V> function)
      • maxBy

        <V extends java.lang.Comparable<? super V>> T maxBy​(Function<? super T,​? extends V> function)
      • sumOfInt

        long sumOfInt​(IntFunction<? super T> function)
      • sumOfLong

        long sumOfLong​(LongFunction<? super T> function)