Schnittstelle FloatDoubleUnaryOperator

Alle Superschnittstellen:
BiFunction<Float,Double,Double>

public interface FloatDoubleUnaryOperator extends BiFunction<Float,Double,Double>
A Type Specific Unary Operator to support Compute/Merge functions with type specific methods to reduce boxing/unboxing
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    default Double
     
    double
    applyAsDouble(float k, double v)
    A Type Specifc apply method to reduce boxing/unboxing.

    Von Schnittstelle geerbte Methoden java.util.function.BiFunction

    andThen
  • Methodendetails

    • applyAsDouble

      double applyAsDouble(float k, double v)
      A Type Specifc apply method to reduce boxing/unboxing. Applies this function to the given arguments.
      Parameter:
      k - the first function argument
      v - the second function argument
      Gibt zurück:
      the function result
    • apply

      default Double apply(Float k, Double v)
      Angegeben von:
      apply in Schnittstelle BiFunction<Float,Double,Double>