Function: radix-tree-leaf--pcase-macroexpander
radix-tree-leaf--pcase-macroexpander is a function defined in
radix-tree.el.gz.
Signature
(radix-tree-leaf--pcase-macroexpander VPAT)
Documentation
Pattern which matches a radix-tree leaf.
The pattern VPAT is matched against the leaf's carried value.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/radix-tree.el.gz
;; Closure converted to defun by helpful.
(defun radix-tree-leaf--pcase-macroexpander
(vpat)
"Pattern which matches a radix-tree leaf.\nThe pattern VPAT is matched against the leaf's carried value."
`(or
`(t \, ,vpat)
(and
(pred
(not consp))
,vpat)))