In this section, we'll go over some of the GoF design patterns, check whether they are pertinent to FP, and study how to implement them. Of course, there are some design patterns that don't get an FP solution. For example, there's no equivalent for a Singleton, which implies the foreign concept of a globally accessed object. Also, while it's true that you may no longer need OOP-specific patterns, developers will still think in terms of those. Also, finally, since we're not going fully functional if an OOP pattern fits, why not use it?
Object-oriented design patterns
Façade and Adapter
Out of these two patterns, let's start with the Façade. This is meant tosolve the problem of providing...