Function: let--pcase-macroexpander
let--pcase-macroexpander is a function defined in pcase.el.gz.
Signature
(let--pcase-macroexpander PAT EXPR)
Documentation
Matches if EXPR matches PAT.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/pcase.el.gz
;; Closure converted to defun by helpful.
(defun let--pcase-macroexpander
(pat expr)
"Matches if EXPR matches PAT."
`(app
(lambda
(_)
,expr)
,pat))