| 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 |
IntFunction<R>
Represents a function that accepts an int-valued argument and produces a
result.
|
interface |
Predicate<T>
Represents a predicate, i.e. 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, i.e. 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.