Interface IntPredicate


public interface IntPredicate
An optimization of Predicate<Integer> which saves the overhead of boxing and unboxing.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    evaluate(int subject)
    Returns true iff the subject "qualifies", otherwise false.
  • Method Details

    • evaluate

      boolean evaluate(int subject)
      Returns true iff the subject "qualifies", otherwise false.