DEV Community

Cover image for Effective Naming of Booleans
Matt McKenna
Matt McKenna

Posted on • Updated on • Originally published at stoicallytyped.com

Effective Naming of Booleans

"Do you have bananas?"

"Yes! We have no bananas."

This is the title of a song by Frank Silver and Irvine Cohn that my great grandfather used to play for me on his ukulele, but today we will be using it to better understand how to name boolean values.

This line is comedic in its confusion. Upon asking a yes or no question the inquisitor is met with both in response. How are they supposed to interpret this answer? After a moment of thought it can be fairly safe to determine the shopkeeper has no bananas. That extra moment of thought leading to this conclusion is what we will be discussing.Β 

Lets translate this question into some Kotlin code. We can turn "Yes! We have no bananas into the below boolean declaration.

var hasNoBananas = true
Enter fullscreen mode Exit fullscreen mode

and "No! We have no bananas" into the false equivalent

var hasNoBananas = false
Enter fullscreen mode Exit fullscreen mode

This code is perfectly valid and won't cause any problems in its implementation.

Β 

if (hasNoBananas) {
  println("We have no bananas")
} else {
  println("We have bananas")
}
Enter fullscreen mode Exit fullscreen mode

Let's take a step away from the bananas for a moment and look at a more practical example. Let's consider a feature flag that will determine whether or not our users have access to a new part of our app and name it with the same intention we have been looking at. We can do this in two ways depending on the words we are using. With the inclusion of 'not' or using a negated version of the word itself.

var isNotEnabled = true
var isDisabled = true
Enter fullscreen mode Exit fullscreen mode

This looks just like the example with the bananas, but when applied to our context, it has the same effect as the reply from the shopkeeper. The 'not' in the boolean name creates a moment of mental processing needed to understand that true is actually the negative case and false is actually the positive case. Much like a double negative in grammar, the reader of this code needs to apply more thought to what will happen when presented with:

fun setFeatureEnabled(isEnabled: Boolean) {
  if (isEnabled) {
    // Enable Feature
  } else {
    // Disable Feature
  }
}


setFeatureEnabled(isNotEnabled) // setFeatureEnabled(true)
// or
setFeatureEnabled(isDisabled) // setFeatureEnabled(true)
Enter fullscreen mode Exit fullscreen mode

We have added a negation into the name of our boolean. We are asking the reader of our code to care about the name as well as the current value to understand what we are intending. In the above example we are passing true to our function with the names isNotEnabled and isDisabled. This will lead to confusion as the function is expecting true to be the enabled case, but reading this code it looks like we want to disable our feature.

When naming a boolean it is best to omit any modifiers to the intention of the value in the name. We wouldn't write something like:

var isNotNOTEnabled = true
Enter fullscreen mode Exit fullscreen mode

so we should also not write something like:

var isNotEnabled = true
Enter fullscreen mode Exit fullscreen mode

This also applies to words that can have negated meaning as we could easily name a boolean like:

var isDisabled = true
Enter fullscreen mode Exit fullscreen mode

But this has the same problem of needing to align the positive true with the negated naming and vice-versa. And just like above we wouldn't write:

var isNotDisabled = true
Enter fullscreen mode Exit fullscreen mode

This would be clearer and logically equivalent if it was named isEnabled. Therefore, we should rely on the positive naming scheme to keep the true / false values aligned with the boolean that they represent.

Applying this understanding to our case

Making the changes to the above we can see how effective this is, both for the shopkeeper and our app!

var hasBananas = true

fun answerFruit(fruit: String, hasInventory: Boolean) {
    if (hasInventory) {
      println("We have $fruit")
    } else {
      println("We have no $fruits")
    }
}

answerFruit("bananas", hasBananas) // We have bananas

hasBananas = false

answerFruit("bananas", hasBananas) // We have no bananas
Enter fullscreen mode Exit fullscreen mode
var isEnabled = false
setFeatureEnabled(isEnabled) // setFeatureEnabled(false)

isEnabled = true
setFeatureEnabled(isEnabled) // setFeatureEnabled(true)
Enter fullscreen mode Exit fullscreen mode

By removing the negation in the name, we now understand and define the desired intent. Applying this practice prevents needing to make any mental jumps when working with the humble boolean.

Top comments (0)