Interface RandomFunction<T,R>

Type Parameters:
T - the input type
R - 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.

@ExperimentalApi @FunctionalInterface public interface RandomFunction<T,R>
A function that accepts an argument and produces a randomised result.
Since:
5.0.0
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(T input, Random random)
    Applies this function to the given input.
  • Method Details

    • apply

      @ExperimentalApi R apply(T input, Random random)
      Applies this function to the given input.
      Parameters:
      input - the function input
      random - instance for randomising the result
      Returns:
      the function result
      Since:
      5.0.0