Macro: AWHEN

Documentation

Just like when expect the symbol IT will be bound to the result of TEST in BODY.

Source

(defmacro awhen (test &body body)
  "Just like when expect the symbol IT will be
  bound to the result of TEST in BODY."
  `(when-bind it ,test ,@body))
Source Context