java.util.function

Package java.util.function

Functional interfaces provide target types for lambda expressions and method references.

See: Description

登录查看完整内容
Interface Summary
Interface Description
BiConsumer<T,U>

Represents an operation that accepts two input arguments and returns no result.

BiFunction<T,U,R>

Represents a function that accepts two arguments and produces a result.

BinaryOperator<T>

Represents an operation upon two operands of the same type, producing a result of the same type as the operands.