Clojure: Truthy and Falsey
Join the DZone community and get the full member experience.
Join For Free
Truthy and Falsey are important concepts in Clojure. The best description I've seen is in The Joy of Clojure, go buy it.
Depending on your language background you may have very different ideas on what evaluates to true and what evaluates to false. In Clojure, the answer to this is very straightforward.
There are other values that are considered false in other languages, this does not apply to clojure.
Depending on your language background you may have very different ideas on what evaluates to true and what evaluates to false. In Clojure, the answer to this is very straightforward.
Both nil and false are treated as "false" and everything else is treated as true.Let's hit the REPL.
user=> (if true "yes" "no") "yes" user=> (if false "yes" "no") "no"Okay, that much should be obvious. However, it's important to note that nil is also considered false, which is why we say:
In Clojure nil and false are considered "false" and therefore we say they are both "falsey".Another quick trip to the REPL to verify that nil is falsey.
user=> (if nil "yes" "no") "no"As expected, the else is evaluated.
There are other values that are considered false in other languages, this does not apply to clojure.
All non-falsey values are considered "truthy" and evaluate as such.Here are some common examples of truthy values in Clojure that are falsey in other languages.
user=> (if -1 "still true" "false") "still true" user=> (if 0 "still true" "false") "still true" user=> (if [] "still true" "false") "still true" user=> (if (list) "still true" "false") "still true"As it says in The Joy of Clojure: Every[thing] is "true" all the time, unless it is nil or false.
From http://blog.jayfields.com/2011/02/clojure-truthy-and-falsey.html
Clojure
Opinions expressed by DZone contributors are their own.
Trending
-
Future of Software Development: Generative AI Augmenting Roles and Unlocking Co-Innovation
-
Understanding Data Compaction in 3 Minutes
-
How to Use an Anti-Corruption Layer Pattern for Improved Microservices Communication
-
Five Java Books Beginners and Professionals Should Read
Comments