Macro: DEFMATCH

Documentation

Match definition macro that provides a common lexical environment for matchers.

Source

(defmacro defmatch (name &rest body)
  "Match definition macro that provides a common lexical environment for matchers."
  `(defun ,name (c)
    ,@body))
Source Context