| Package | Description |
|---|---|
| com.annimon.stream | |
| com.annimon.stream.function.ints |
| Modifier and Type | Method and Description |
|---|---|
static IntStream |
IntStream.iterate(int seed,
IntUnaryOperator f)
Returns an infinite sequential ordered
IntStream produced by iterative
application of a function f to an initial element seed,
prooducing a Stream consisting of seed, f(seed),
f(f(seed)), etc. |
IntStream |
IntStream.map(IntUnaryOperator mapper)
Returns a stream consisting of the results of applying the given
function to the elements of this stream.
|
| Modifier and Type | Method and Description |
|---|---|
static IntUnaryOperator |
IntUnaryOperator.Util.identity()
Returns a unary operator that always returns its input argument.
|
Copyright © 2016. All rights reserved.