Schnittstelle ObjectLongUnaryOperator<T>

Typparameter:
T - the keyType of elements maintained by this Collection
Alle Superschnittstellen:
BiFunction<T,Long,Long>

public interface ObjectLongUnaryOperator<T> extends BiFunction<T,Long,Long>
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 Long
    apply(T k, Long v)
     
    long
    applyAsLong(T k, long v)
    A Type Specifc apply method to reduce boxing/unboxing.

    Von Schnittstelle geerbte Methoden java.util.function.BiFunction

    andThen
  • Methodendetails

    • applyAsLong

      long applyAsLong(T k, long 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 Long apply(T k, Long v)
      Angegeben von:
      apply in Schnittstelle BiFunction<T,Long,Long>