Interface FloatBinaryOperator

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface FloatBinaryOperator
A function which takes two floats as input, and returns a float.
  • Method Summary

    Modifier and Type
    Method
    Description
    float
    applyAsFloat(float a, float b)
    Applies this function.
  • Method Details

    • applyAsFloat

      float applyAsFloat(float a, float b)
      Applies this function.
      Parameters:
      a - The first input parameter
      b - The second input parameter
      Returns:
      The return value of this function