Get my email lessons on how you can build a tech team you can depend on.

Currying decisions

In functional programmers, currying is the technique of translating a function which takes multiple arguments into a sequence of functions, each with a single argument.

For example, a function like:

go_to_lunch?(time,place,person)

might be curried to the form:

go_to_lunch?(time)(place)(person)

In this case, go_to_lunch take a single argument (time) and returns an anonymous function which takes a single argument (place). The anonymous function which takes the argument (place) returns a second anonymous function that takes a single argument (person).

I believe the return stack looks like this:

  1. Evaluate who to go to lunch with (person)
  2. Evaluate where to go to lunch with that person (place)
  3. Evaluate what time to go to that place with that person (time)

The biggest reason for doing this that I see is it simplifies each function, making it easier to reason about, and increasing the chance each function is correct.

The human equivalent

I often hear people struggling to make complex decisions that involve many variables.

For example:

  1. Should I change jobs?
  2. Should I reprimand an employee?
  3. Should I talk to my boss about what I’m upset about?

In each case the decision isn’t simple – many factors come into play.

One strategy I use is to curry my decisions, or in human-speak, “separate my decisions.”

Imagine you are considering quitting your job.  A complex decision for sure.

Instead of trying to reason through the decision like this:

quit_job?(why,when,how,next_job)

Try separating the decisions:

  1. Why do you want to quit your job?
  2. When do you want to quit your job?
  3. How do you want to quit your job?
  4. Where do you want to work next?

Just like currying functions, currying decisions makes decisions easier to reason about, and easier to ensure each decision is correct.

I find that writing out my decision on paper, and then breaking it down into as many small decisions as I can, quickly makes a choice obvious.

It might not be an easy path… but at least it’s clear.

Have you tried a similar strategy in your decision making?

Best,
Marcus

[SPONSORED] Free Book: 20 Patterns to watch for in your Engineering Team.  I wish I’d had this when I started managing programmers!

About Marcus Blankenship

Where other technical coaches focus on process or tools, I focus on the human aspects of your Programmer to Manager transition. I help you hire the right people, create the right culture, and setup the right process which achieves your goals. Managing your team isn't something you learned in college. In fact, my clients often tell me "I never prepared for this role, I always focused on doing the work". If you're ready to improve your leadership, process and team, find out how I can help you.

Pin It on Pinterest

Share This