Interface LongBinaryConsumer

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 LongBinaryConsumer
A special consumer that takes two long arguments.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(long first, long second)
    Evaluates this consumer on the given arguments.
  • Method Details

    • accept

      void accept(long first, long second)
      Evaluates this consumer on the given arguments.
      Parameters:
      first - The first argument.
      second - The second argument.