| Package | Description |
|---|---|
| com.annimon.stream | |
| com.annimon.stream.function | |
| com.annimon.stream.operator |
| Modifier and Type | Method and Description |
|---|---|
static <T> Stream<T> |
Stream.iterate(T seed,
Predicate<? super T> predicate,
UnaryOperator<T> op)
Creates a
Stream by iterative application UnaryOperator function
to an initial element seed, conditioned on satisfying the supplied predicate. |
static <T> Stream<T> |
Stream.iterate(T seed,
UnaryOperator<T> op)
Creates a
Stream by iterative application UnaryOperator function
to an initial element seed. |
| Modifier and Type | Method and Description |
|---|---|
static <T> UnaryOperator<T> |
UnaryOperator.Util.identity()
Returns a unary operator that always returns its input argument.
|
| Constructor and Description |
|---|
ObjIterate(T seed,
UnaryOperator<T> op) |
Copyright © 2017. All rights reserved.