Package ru.objectsfill.functions
Interface BinaryFunction<T,R>
- Type Parameters:
T- the type of the first argumentR- the type of the second argument
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A two-argument functional interface that performs an operation and returns no result.
Used for field-level operations that may require reflective access.
-
Method Summary
-
Method Details
-
apply
Applies this function to the given arguments.- Parameters:
t- the first argumentr- the second argument- Throws:
IllegalAccessException- if reflective field access is denied
-