| Package | Description |
|---|---|
| com.annimon.stream |
| Modifier and Type | Method and Description |
|---|---|
IntStream |
IntStream.flatMap(IntFunction<? extends IntStream> mapper)
Returns a stream consisting of the results of replacing each element of
this stream with the contents of a mapped stream produced by applying
the provided mapping function to each element.
|
<R> Stream<R> |
IntStream.mapToObj(IntFunction<? extends R> mapper)
Returns a
Stream consisting of the results of applying the given
function to the elements of this stream. |
<U> Optional<U> |
OptionalInt.mapToObj(IntFunction<U> mapper)
Invokes mapping function on inner value if present.
|
<R> R[] |
Stream.toArray(IntFunction<R[]> generator)
Collects elements to an array, the
generator constructor of provided. |
Copyright © 2017. All rights reserved.