4 Clean Code Principles for Functional Programming

Clean Code

There are many principles and design patterns when it comes to writing imperative code. For instance, the gang of four books mentioned 23 different ways to write a well-maintained object-oriented code. You must hear of the SOLID principles, the DRY principles, and many other acronyms for principles of writing clean code. However, some of the imperative code principles might not apply anymore when writing functional programming code.

Don’t get me wrong - SOLID and a gang of four design pattern principles are very useful in constructing readable code. However, software engineers can adopt regulations specific to functional programming for writing readable code - especially creating your code around pure functions. Since available programming promotes immutability and pure functions, the way you think about structuring your code is different from writing imperative code.

There is a strategy pattern in object-oriented programming because there is no way in object-oriented programming for you to create a lambda function. I’ll pull the classic shape class, where each respective shape will print the name of that shape.

If there is a higher-order function, you can create a lambda function that passes it to SomeClass. The above strategy pattern can be condensed to a few lines of code:

In this article, I want to share 4 general principles of writing readable code that you can imply when writing your functions.

Disclaimer - these are not hard rules by any means, and if you have any other pattern that you see to write readable and better code, don’t forget to share it in the comment section below!

There are KISS and DRY principles, which are sound principles to take from imperative to functional code. I won’t mention it here since you can find it on many of the internet out there.

Don’t Nest Excessively

I have this problem myself. Because there is no state in functional programming code - most of the code a series of expressions, having multiple nested expressions seems right. It is easier to write when you are on the flow. Another thing about nesting excessively is that we tend to want to generalized things to make them reusable (DRY principles), but then it hurts the readability of the code. However, when you go back and read it, you often are confused about what happened in your code. Take a look at the below code:

In this case, we can refactor it smaller function with clear names like this:

Although you don’t know what the function is doing, at least it is easier on the eyes.

Sometimes functional programming decomposes the code very minimal to a single line. One of the reasons is that that is the most basic primitive of the operation that cannot be implemented with some other operators. Try doing this exercise of trying to decompose functions into multiple smaller ones - you will see that your code can be more composable.

Don’t Get Rid of Intermediate Variables

One of the gripes of other people think about functional programming, or Scala is people who love one-liner. The fact that each expression returns a value, we can chain them together to write our function. Although we need to type more keystroke, in the future, you might thank me later when there is some bug in your code.

There are multiple generic operations in Scala that help you write code in one line. Let’s take the above example. Inside incrementByOneAndMultipleByTwoWith(x:Int), I don’t get rid of intermediate value. It will look something like this:

However, having an intermediate value can help you understand the code and faster to debug your codebase.

Don’t Use Pattern Matching If there is an Equivalent Standard Library for that Function

One of the reasons why pattern matching is cool is that you can literally do anything with it. If I want to get the value inside the option, I can do pattern matching to get the option’s value. If I want to reverse an integer array, I can do pattern matching to change an integer array.

However, its advantages also serve as its disadvantages. Because it is too generic, you broke the DRY principles by re-inventing the code that exists. Instead of using pattern matching to get value within an Option monad, you can get used getOrElse - which serves the same purpose. Instead of using pattern matching to reverse an array of integers, you can just use the standard library reverse.

Remember, not all rules are hard rules - there is also an exception when you use pattern matching. If the operation you want to apply hasn’t been seen in the standard library, you need to use it. If you play around with your function and pattern matching is much easier to read, you will pick pattern matching instead.

Isolate your I/O

Writing functional doesn’t mean that all of your function needs to be pure. Writing functionally is knowing how to push the IO to the end of the boundary. We want to isolate the impure calls to one place- usually, we said we like to call it at the end of the world.

Some functional programming languages, like Haskell, are enforced within the language itself. However, when it is not enforced, try putting all the IO calls to the end of your program’s boundary, or a little box can help make your code more maintainable. You suddenly can unit test your code quickly because those functions are pure.

Let’s take one example:

We can further push the boundary of IO to the edge by separate out the IO and just return a String:

Then we can call it like this:

In the above example, we can test the contest function quickly because contest becomes a pure function right now.

That’s it! I hope you get some guidelines and principles for writing readable, functional code. Remember, these principles are more like guidelines rather than rules. I hope you find this article helpful. If you find any hidden pattern or ways to create a more modular code, please let the world know by commenting on it below!

Like this Article?

Sign up for my newsletter to get notified for new articles!


Related Posts

5 Anti Pattern for Writing Code in a Functional Programming Language

No 1. Nested Asynchronous Function

Why Do Functional Programmers Prefer For-Comprehension Over Imperative Code Block

Short Answer - Readability

How to Turn Domain Model into DynamoDB AttributeValue

A brief introduction about Dynosaur

Why is REST more popular than RPC?

REST is much more flexible

Want to Safe more money and Resources for your Company? Treat Your Software as a Living Organism

Codebase are not machines but a living organism