Package | Description |
---|---|
java8.util.function |
Functional interfaces provide target types for lambda expressions
and method references.
|
java8.util.stream |
Classes to support functional-style operations on streams of elements, such
as map-reduce transformations on collections.
|
Modifier and Type | Method and Description |
---|---|
static DoubleUnaryOperator |
DoubleUnaryOperators.andThen(DoubleUnaryOperator this_,
DoubleUnaryOperator after)
Returns a composed operator that first applies the
this_ operator to
its input, and then applies the after operator to the result. |
static DoubleUnaryOperator |
DoubleUnaryOperators.compose(DoubleUnaryOperator this_,
DoubleUnaryOperator before)
Returns a composed operator that first applies the
before
operator to its input, and then applies the this_ operator to the result. |
static DoubleUnaryOperator |
DoubleUnaryOperators.identity()
Returns a unary operator that always returns its input argument.
|
Modifier and Type | Method and Description |
---|---|
static DoubleUnaryOperator |
DoubleUnaryOperators.andThen(DoubleUnaryOperator this_,
DoubleUnaryOperator after)
Returns a composed operator that first applies the
this_ operator to
its input, and then applies the after operator to the result. |
static DoubleUnaryOperator |
DoubleUnaryOperators.compose(DoubleUnaryOperator this_,
DoubleUnaryOperator before)
Returns a composed operator that first applies the
before
operator to its input, and then applies the this_ operator to the result. |
Modifier and Type | Method and Description |
---|---|
static DoubleStream |
DoubleStreams.iterate(double seed,
DoublePredicate predicate,
DoubleUnaryOperator f)
Returns a sequential ordered
DoubleStream produced by iterative
application of a function to an initial element, conditioned on
satisfying the supplied predicate. |
static DoubleStream |
DoubleStreams.iterate(double seed,
DoubleUnaryOperator f)
Returns an infinite sequential ordered
DoubleStream produced by iterative
application of a function f to an initial element seed ,
producing a Stream consisting of seed , f(seed) ,
f(f(seed)) , etc. |
DoubleStream |
DoubleStream.map(DoubleUnaryOperator mapper)
Returns a stream consisting of the results of applying the given
function to the elements of this stream.
|
Copyright © 2016. All rights reserved.