Function: MAKE-MATCHER

Documentation

Create a matcher function from SPEC.

Source

(defun make-matcher (spec)
  "Create a matcher function from SPEC."
  (let ((%bind-vars% '()))
    (declare (special %bind-vars%))
    (values (%make-matcher spec)
	    %bind-vars%)))
Source Context