Interface LongBiFunction<U>

  • Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface LongBiFunction<U>
    Function that takes two primitive longs and returns an object.
    Since:
    1.0.3
    Author:
    Emil Forslund
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      U apply​(long first, long second)
      Takes two primitive long-values and returns an object.
    • Method Detail

      • apply

        U apply​(long first,
                long second)
        Takes two primitive long-values and returns an object.
        Parameters:
        first - the first long
        second - the first long
        Returns:
        the result