Macro: ACOND

Documentation

Just like cond-bind except the var is automatically IT.

Source

(defmacro acond (&rest clauses)
  "Just like cond-bind except the var is automatically IT."
  `(cond-bind it ,@clauses))
Source Context