ExIntStream |
ExIntStream.distinct() |
ExIntStream |
ExIntStream.filter(java.util.function.IntPredicate predicate) |
ExIntStream |
ExIntStream.flatMap(java.util.function.IntFunction<? extends java.util.stream.IntStream> mapper) |
ExIntStream |
ExStream.flatMapToInt(java.util.function.Function<? super T,? extends java.util.stream.IntStream> mapper) |
ExIntStream |
ExIntStream.limit(long maxSize) |
ExIntStream |
ExIntStream.map(java.util.function.IntUnaryOperator mapper) |
ExIntStream |
ExDoubleStream.mapToInt(java.util.function.DoubleToIntFunction mapper) |
ExIntStream |
ExLongStream.mapToInt(java.util.function.LongToIntFunction mapper) |
ExIntStream |
ExStream.mapToInt(java.util.function.ToIntFunction<? super T> mapper) |
default ExIntStream |
ExCollection.mapToInt(java.util.function.ToIntFunction<? super T> mapper)
Returns an IntStream consisting of the results of applying the
given function to the elements of this stream.
|
static ExIntStream |
ExIntStream.of(java.util.stream.IntStream stream) |
ExIntStream |
ExIntStream.onClose(Runnable closeHandler) |
ExIntStream |
ExIntStream.parallel() |
ExIntStream |
ExIntStream.peek(java.util.function.IntConsumer action) |
ExIntStream |
ExIntStream.sequential() |
ExIntStream |
ExIntStream.skip(long n) |
ExIntStream |
ExIntStream.sorted() |
ExIntStream |
ExIntStream.unordered() |