Function: pcase--app-subst-rest
pcase--app-subst-rest is a byte-compiled function defined in
pcase.el.gz.
Signature
(pcase--app-subst-rest REST SYM FUN NSYM)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/pcase.el.gz
(defun pcase--app-subst-rest (rest sym fun nsym)
(mapcar (lambda (branch)
`(,(pcase--app-subst-match (car branch) sym fun nsym)
,@(cdr branch)))
rest))