Skip to content

Commit

Permalink
Update java8-questions.md
Browse files Browse the repository at this point in the history
  • Loading branch information
learning-zone committed Feb 10, 2020
1 parent 9882c25 commit ff92b0f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions java8-questions.md
Expand Up @@ -655,6 +655,10 @@ System.out.println(operator.apply ( 1 , 2 )); // 3
* `IntBinaryOperator`- binary operator receiving input Integer;
* `LongBinaryOperator`- binary operator receiving input Long.

<div align="right">
<b><a href="#">↥ back to top</a></b>
</div>

#### Q. What are the functional interfaces `Predicate<T>`, `DoublePredicate`, `IntPredicateand` `LongPredicate`?
`Predicate<T>`(**predicate**) - the interface with which a function is implemented that receives an instance of the class as input `T`and returns the type value at the output `boolean`.

Expand Down

0 comments on commit ff92b0f

Please sign in to comment.