function-composition/README.md
Combine multiple small functions into a single operation that executes them in a sequence, producing a new function as the result.
Real-world example
Imagine a fast-food restaurant where the process of making a burger is broken down into several steps: grilling the patty, toasting the bun, adding condiments, and assembling the burger. Each of these steps can be seen as a function.
In the Functional Composition design pattern, these individual steps (functions) can be composed into a complete burger-making process. Each step remains simple and reusable. For instance, the grilling function could be reused for making sandwiches or other dishes that require a grilled patty. This modular approach allows the restaurant to efficiently create various menu items by reusing and combining simple, predefined steps.
In plain words
The Function Composition pattern allows building complex functions by combining simpler ones, making it easier to manage, test, and reuse individual pieces of functionality.
Wikipedia says
Function composition is an act or mechanism to combine simple functions to build more complicated ones. Like the usual composition of functions in mathematics, the result of each function is passed as the argument of the next, and the result of the last one is the result of the whole.
Sequence diagram
In the functional programming paradigm, function composition is a powerful technique. For instance, in Java, you can use higher-order functions to combine operations like multiplying and squaring numbers.
Using Java's functional interfaces, we can define simple functions and compose them. Here's how function composition works in Java.
Let's start with defining two simple functions. In this case, we have a function timesTwo that multiplies its input by 2, and a function square that squares its input:
Function<Integer, Integer> timesTwo = x -> x * 2;
Function<Integer, Integer> square = x -> x * x;
Next, we use the FunctionComposer class to compose these two functions into a new function. The composeFunctions method takes two functions as arguments and returns a new function that is the composition of the input functions:
Function<Integer, Integer> composedFunction = FunctionComposer.composeFunctions(timesTwo, square);
Finally, we apply the composed function to an input value. In this case, we apply it to the number 3. The result is the square of the number 3 multiplied by 2, which is 36:
public static void main(String[] args) {
final var logger = LoggerFactory.getLogger(App.class);
Function<Integer, Integer> timesTwo = x -> x * 2;
Function<Integer, Integer> square = x -> x * x;
Function<Integer, Integer> composedFunction = FunctionComposer.composeFunctions(timesTwo, square);
int result = composedFunction.apply(3);
logger.info("Result of composing 'timesTwo' and 'square' functions applied to 3 is: " + result);
}
This will output:
Result of composing 'timesTwo' and 'square' functions applied to 3 is: 36
This example demonstrates how the Function Composition pattern can be used to create complex functions by composing simpler ones, enhancing modularity and reusability of function-based logic.
Use the Function Composition pattern when:
Benefits:
Trade-offs: