DEV Community

Cover image for Reasoning About Code
Eric Normand
Eric Normand

Posted on • Originally published at lispcast.com

Reasoning About Code

A lot of people talk about "reasoning about code". I certainly do. It's something that I don't think I ever heard when I was an OO programmer. What does it mean?

It's a tough question, because it's not one of those technical terms with a technical definition. It's just something people say when they are talking about the benefits of functional programming. But since I say it, too, I might as well give my understanding of the term.

To me, "reasoning about code" is all about the limitations of the human mind. If we were hyper geniuses, we could read any amount of code and just understand it. But we're not and we can't. As programs get bigger, we can't help but lose track of what's happening in a program.

People are used to interacting with the real world, where effects tend to be local. For instance, if I'm locked in my house, a person ten miles away cannot attack me. When we walk down the street at night, we know there are people who might hurt us somewhere in the world. But what we're concerned about is if they are close by. Instead of starting with the locations of all attackers and calculating the probability of each of them being able to harm us, we look around where we are and we evaluate the people we see. Humans think locally because that's where the action is.

It's this sense of locality that we find in functional programming languages. When you look at functional code, several things help you localize yourself:

  • Scopes are localizing. Definitions cannot "leak in" from elsewhere.
  • Pure functions are localizing. Pure functions will act the same regardless of when they are called or how many times they are called.
  • Immutable values are localizing. No need to worry about other parts of the code modifying it.
  • Isolated and consolidated side-effects. At least they're happening in the same place.

Since everything is relatively local, you have less to read and understand to be able to reason about what it's going to do. There are some common things that are non-localizing in programming languages.

  • Global mutable state. Anything, in any part of the code, can change it at any time. The opposite of local.
  • Scope leak. Variables can often be modified outside of their scope, or mutations in one scope are visible outside the scope.
  • Mutable objects. You are referencing an object that is changing out from under you.
  • Side effects. Well, once you send a message across the wire, or receive on, it's not so local.

So what should we do? Push state down from global to local. Make it as local as possible. Factor out pure functions from your code, which should isolate state change. Use immutable values whenever possible. Isolate and consolidate your side effects (so at least you know where they are happening).

Conclusions

People talk about "reasoning about code" a lot and it's not clear that it's meaningful. But I do use the term and when I do I mean "things are more local so I can keep them in my head". It's a notion that serves me well. For instance, it acts like a code smell. If I'm not able to keep something in my head, it's time to make it more functional.

If you like this topic, or you'd like to get into functional programming, you might like to try the PurelyFunctional.tv Newsletter. It's a weekly email about Clojure, Functional Programming, and how they relate to the history of technology.

Top comments (2)

Collapse
 
mortoray profile image
edA‑qa mort‑ora‑y

I almost wanted to say that you don't need to make something more functional to make it more local. But then I realized, that by making something more local, you are probably making it more functional at the same time.

It needn't be a complete functional goal though. Any movement of global logic and data into isolated smaller components keeps things local. The smaller the chunks are the easier they are to understand.

Collapse
 
ericnormand profile image
Eric Normand

Hey there,

You're absolutely right. Functional is not the only way to enhance local reasoning!

I do think it's interesting how the functional, procedural, and OO advice converges when it comes to making things more local.

Eric