接口 LongPairSet.LongPairFunction<T>

类型参数:
T - the type of the result of the function
封闭接口:
LongPairSet
函数接口:
这是一个函数接口, 因此可用作 lambda 表达式或方法引用的赋值目标。

@FunctionalInterface public static interface LongPairSet.LongPairFunction<T>
Represents a function that accepts two long arguments and produces a result. This is the two-arity specialization of Function.
  • 方法概要

    修饰符和类型
    方法
    说明
    apply(long item1, long item2)
    Applies this function to the given arguments.
  • 方法详细资料

    • apply

      T apply(long item1, long item2)
      Applies this function to the given arguments.
      参数:
      item1 - the first function argument
      item2 - the second function argument
      返回:
      the function result