Schnittstelle IntObjectUnaryOperator<V>

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

public interface IntObjectUnaryOperator<V> extends BiFunction<Integer,V,V>
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
    apply(int k, V v)
    A Type Specifc apply method to reduce boxing/unboxing.
    default V
    apply(Integer k, V v)
     

    Von Schnittstelle geerbte Methoden java.util.function.BiFunction

    andThen
  • Methodendetails

    • apply

      V apply(int k, V 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 V apply(Integer k, V v)
      Angegeben von:
      apply in Schnittstelle BiFunction<Integer,V,V>