Top Categories
17.15 Java 8 Stream Api Features part 13 Function BinaryOperator BiFunction Interface Lambda
- Category:
- Sub Category:
Stream is an interface which is defined in java.util.stream package. BiFunction is a functional interface which can be used as the assignment target for a lambda expression or method reference. It represent an operation upon two operands of the same type, producing a result of the same
Stream is an interface which is defined in java.util.stream package. BiFunction is a functional interface which can be used as the assignment target for a lambda expression or method reference. It represent an operation upon two operands of the same type, producing a result of the same type as the operands. A Java lambda expression is a function which can be created without belonging to any class. A lambda expression can be passed around as if it was an object and executed on demand.