Schnittstelle ByteByteUnaryOperator

Alle Superschnittstellen:
BiFunction<Byte,Byte,Byte>

public interface ByteByteUnaryOperator extends BiFunction<Byte,Byte,Byte>
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 Byte
    apply(Byte k, Byte v)
     
    byte
    applyAsByte(byte k, byte v)
    A Type Specifc apply method to reduce boxing/unboxing.

    Von Schnittstelle geerbte Methoden java.util.function.BiFunction

    andThen
  • Methodendetails

    • applyAsByte

      byte applyAsByte(byte k, byte 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 Byte apply(Byte k, Byte v)
      Angegeben von:
      apply in Schnittstelle BiFunction<Byte,Byte,Byte>