-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Rahul Chhabra edited this page Jun 13, 2017
·
1 revision
FIDS (Functional Interfaces don't stop) is an API that provides users with a larger number of functional interfaces to work with, compared to java.util.function
It provides the following Functional Interfaces:
- TriFunction
- TriConsumer
- TriPredicate
- QuadriFunction
- QuadriConsumer
- QuadriPredicate And we intent to add more in the near future.
Sometimes you need a Consumer or Function more than two(Uni and BiConsumer/Function are there in java.util.function),that's exactly when FIDS is useful.
Yes,it provides two classes, Pair
and Triplet
.