Interface RandomFunction<T,R>
- Type Parameters:
T
- the input typeR
- the result type
- All Known Subinterfaces:
RandomUnaryOperator<T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A function that accepts an argument and produces a randomised result.
- Since:
- 5.0.0
- See Also:
-
Method Summary
-
Method Details
-
apply
Applies this function to the giveninput
.- Parameters:
input
- the function inputrandom
- instance for randomising the result- Returns:
- the function result
- Since:
- 5.0.0
-