Function: pcase*
pcase* is an autoloaded macro defined in cond-star.el.gz.
Signature
(pcase* PATTERN DATUM)
Documentation
Evaluate PATTERN and DATUM like an element of BINDINGS in pcase-let.
This is not really a Lisp operator; it is meaningful only in the
CONDITION of a cond* clause. See cond* for details.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/cond-star.el.gz
;;;###autoload
(defmacro pcase* (_pattern _datum)
"Evaluate PATTERN and DATUM like an element of BINDINGS in `pcase-let'.
This is not really a Lisp operator; it is meaningful only in the
CONDITION of a `cond*' clause. See `cond*' for details."
(macroexp-warn-and-return "`pcase*' used other than as a `cond*' condition"
nil 'suspicious))