Function: comp-mvar-type-hint-match-p
comp-mvar-type-hint-match-p is a byte-compiled function defined in
comp.el.gz.
Signature
(comp-mvar-type-hint-match-p MVAR TYPE-HINT)
Documentation
Match MVAR against TYPE-HINT.
In use by the back-end.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
;; In use by comp.c.
(defun comp-mvar-type-hint-match-p (mvar type-hint)
"Match MVAR against TYPE-HINT.
In use by the back-end."
(cl-ecase type-hint
(cons (comp-cstr-cons-p mvar))
(fixnum (comp-cstr-fixnum-p mvar))))