Java Streams IntStream
API
- IntStream allMatch(IntPredicate predicate)
- IntStream anyMatch(IntPredicate predicate)
- IntStream asDoubleStream()
- IntStream asLongStream()
- IntStream average()
- IntStream boxed()
- IntStream builder()
- IntStream collect(Supplier < R > supplier, ObjIntConsumer < R > accumulator, BiConsumer < R,R > combiner)
- IntStream concat(IntStream a, IntStream b)
- IntStream count()
- IntStream distinct()
- IntStream empty()
- IntStream filter(IntPredicate predicate)
- IntStream findAny()
- IntStream findFirst()
- IntStream flatMap(IntFunction < ? extends IntStream > mapper)
- IntStream forEachOrdered(IntConsumer action)
- IntStream forEach(IntConsumer action)
- IntStream generate(IntSupplier s)
- IntStream iterate(int seed, IntUnaryOperator f)
- IntStream iterator()
- IntStream limit(long maxSize)
- IntStream mapToDouble (IntToDoubleFunction mapper)
- IntStream mapToLong(IntToLongFunction mapper)
- IntStream mapToObj(IntFunction < ? extends U > mapper)
- IntStream map(IntUnaryOperator mapper)
- IntStream max()
- IntStream min()
- IntStream noneMatch(IntPredicate predicate)
- IntStream of(int t)
- IntStream of(int... values)
- IntStream parallel()
- IntStream peek(IntConsumer action)
- IntStream rangeClosed(int startInclusive, int endInclusive)
- IntStream range(int startInclusive, int endExclusive)
- IntStream reduce(IntBinaryOperator op)
- IntStream reduce(int identity, IntBinaryOperator op)
- IntStream sequential()
- IntStream skip(long n)
- IntStream sorted()
- IntStream spliterator()
- IntStream sum()
- IntStream summaryStatistics()
- IntStream toArray()