Modifier and Type | Method and Description |
---|---|
default LongUnaryIOOperator |
LongUnaryIOOperator.andThen(LongUnaryIOOperator after)
Returns a composed operator that first applies this operator to its input, and then applies the
after operator to the result. |
static LongUnaryIOOperator |
LongUnaryIOOperator.checked(LongUnaryOperator operator)
Returns a unary operator that applies the
operator operator to its input, and unwraps any UncheckedIOException that is thrown
by throwing its cause . |
default LongUnaryIOOperator |
LongUnaryIOOperator.compose(LongUnaryIOOperator before)
Returns a composed operator that first applies the
before operator to its input, and then applies this operator to the result. |
static LongUnaryIOOperator |
LongUnaryIOOperator.identity()
Returns a unary operator that always returns its input argument.
|
Modifier and Type | Method and Description |
---|---|
default LongUnaryIOOperator |
LongUnaryIOOperator.andThen(LongUnaryIOOperator after)
Returns a composed operator that first applies this operator to its input, and then applies the
after operator to the result. |
default LongUnaryIOOperator |
LongUnaryIOOperator.compose(LongUnaryIOOperator before)
Returns a composed operator that first applies the
before operator to its input, and then applies this operator to the result. |
static LongUnaryOperator |
LongUnaryIOOperator.unchecked(LongUnaryIOOperator operator)
Returns a unary operator that applies the
operator operator to its input, and wraps any IOException that is thrown in an
UncheckedIOException . |
Copyright © 2017–2020. All rights reserved.