Throughout this book we’ve focused on pure functions and questions like:
- why are they so good
- how to write them
- how to use, reuse and compose them
But, as we are unfortunately aware, we do need side effects. In fact, side effects are typically the very purpose of the system in question.
Imagine if you walked to your ATM, swiped the card and selected the amount to withdraw only to be brushed off by the machine that says:
Sorry, but I only do pure functions and handing over the cash is a bit of a side effect.
That would be one very useless ATM and you wouldn’t get your money.
Fortunately, functional programming does present some techniques we can use to handle side effects. It has to - it wouldn’t be very useful without it!
Some of these techniques are:
- Separation of concerns
- Encapsulation
- Idempotence
- Ignoring the semantically insignificant side effects