Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 566 Bytes

File metadata and controls

14 lines (11 loc) · 566 Bytes

Two argument (Bi) Functional Interfaces

Need of Bi-Functional Interfaces
Normal Functional Interfaces (Predicate, Function and Consumer) can accept only one input argument.

But sometimes our programming requirement is to accept two input arguments, then we should go for two-argument functional interfaces.

The following functional interfaces can take 2 input arguments.