IntStream |
IntStream.Builder.build() |
static IntStream |
IntStream.concat(IntStream a,
IntStream b) |
IntStream |
IntStream.distinct() |
static IntStream |
IntStream.empty() |
IntStream |
IntStream.filter(IntPredicate predicate) |
IntStream |
IntStream.flatMap(IntFunction<? extends IntStream> mapper) |
IntStream |
Stream.flatMapToInt(Function<? super T,? extends IntStream> mapper) |
static IntStream |
IntStream.generate(IntSupplier s) |
static IntStream |
StreamSupport.intStream(Spliterator.OfInt spliterator,
boolean parallel) |
static IntStream |
StreamSupport.intStream(Supplier<? extends Spliterator.OfInt> supplier,
int characteristics,
boolean parallel) |
static IntStream |
IntStream.iterate(int seed,
IntUnaryOperator f) |
IntStream |
IntStream.limit(long maxSize) |
IntStream |
IntStream.map(IntUnaryOperator mapper) |
IntStream |
DoubleStream.mapToInt(DoubleToIntFunction mapper) |
IntStream |
LongStream.mapToInt(LongToIntFunction mapper) |
IntStream |
Stream.mapToInt(ToIntFunction<? super T> mapper) |
static IntStream |
IntStream.of(int... values) |
static IntStream |
IntStream.of(int t) |
IntStream |
IntStream.parallel() |
IntStream |
IntStream.peek(IntConsumer action) |
static IntStream |
IntStream.range(int startInclusive,
int endExclusive) |
static IntStream |
IntStream.rangeClosed(int startInclusive,
int endInclusive) |
IntStream |
IntStream.sequential() |
IntStream |
IntStream.skip(long n) |
IntStream |
IntStream.sorted() |