Schnittstelle BooleanBooleanUnaryOperator

Alle Superschnittstellen:
BiFunction<Boolean,Boolean,Boolean>

public interface BooleanBooleanUnaryOperator extends BiFunction<Boolean,Boolean,Boolean>
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 Boolean
     
    boolean
    applyAsBoolean(boolean k, boolean v)
    A Type Specifc apply method to reduce boxing/unboxing.

    Von Schnittstelle geerbte Methoden java.util.function.BiFunction

    andThen
  • Methodendetails

    • applyAsBoolean

      boolean applyAsBoolean(boolean k, boolean 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 Boolean apply(Boolean k, Boolean v)
      Angegeben von:
      apply in Schnittstelle BiFunction<Boolean,Boolean,Boolean>