Macro: AIF

Documentation

Just like IF-BIND but the var is always IT.

Source

(defmacro aif (test then &optional else)
  "Just like IF-BIND but the var is always IT."
  `(if-bind it ,test ,then ,else))
Source Context