When coming from other languages, devs often think the best way to check for an empty vector or other sequence in Clojure is to either check the count is less than one or check for (not (empty? some-seq)) . Both will work, but are not idiomatic, meaning “Your newbness is showing.” Continue reading “Checking for Empty Seqs in Clojure”