| Package | Description |
|---|---|
| com.annimon.stream.function |
| Modifier and Type | Interface and Description |
|---|---|
interface |
BiConsumer<T,U>
Represents an operation on two input arguments.
|
interface |
BiFunction<T,U,R>
Represents a function which produces result from two input arguments.
|
interface |
BinaryOperator<T>
Operation on a single operand that produces a result of the
same type as its operand.
|
interface |
Consumer<T>
Represents an operation on input argument.
|
interface |
Function<T,R>
Represents a function which produces result from input arguments.
|
interface |
IntBinaryOperator
Represents an operation upon two
int-valued operands and producing an
int-valued result. |
interface |
IntConsumer
Represents an operation that accepts a single
int-valued argument and
returns no result. |
interface |
IntFunction<R>
Represents a function that accepts an int-valued argument and produces a
result.
|
interface |
IntPredicate
Represents a predicate (function with boolean type result).
|
interface |
IntSupplier
Represents a supplier of
int-valued results. |
interface |
IntUnaryOperator
Represents an operation on a single int-valued operand that produces an int-valued result.
|
interface |
ObjIntConsumer<T>
Represents an operation on two input arguments.
|
interface |
Predicate<T>
Represents a predicate (function with boolean type result).
|
interface |
Supplier<T>
Represents a function which supply a result.
|
interface |
ThrowableConsumer<T,E extends Throwable>
Represents an operation on input argument and can throw an exception.
|
interface |
ThrowableFunction<I,R,E extends Throwable>
Represents a function which produces result from input arguments and can throw an exception.
|
interface |
ThrowablePredicate<T,E extends Throwable>
Represents a predicate (function with boolean type result) which can throw an exception.
|
interface |
ThrowableSupplier<T,E extends Throwable>
Represents a function for supplying result which can throw an exception.
|
interface |
UnaryOperator<T>
Operation on a single operand that produces a result of the
same type as its operand.
|
Copyright © 2016. All rights reserved.