Interface BiBytePredicate

  • 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 BiBytePredicate
    Functional interface representing side-effect free methods with the signature boolean test(byte, byte).
    Since:
    1.0.5
    Author:
    Emil Forslund
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean test​(byte first, byte second)
      Tests this predicate with the specified arguments.
    • Method Detail

      • test

        boolean test​(byte first,
                     byte second)
        Tests this predicate with the specified arguments. Implementations of this interface should be without side-effects.
        Parameters:
        first - the first argument
        second - the second argument
        Returns:
        true if the test passed, else false