Function: parseclj-lex-token-p
parseclj-lex-token-p is a byte-compiled function defined in
parseclj-lex.el.
Signature
(parseclj-lex-token-p TOKEN)
Documentation
Is the given TOKEN a parseclj-lex TOKEN.
A token is an association list with :token-type as its first key.
Source Code
;; Defined in ~/.emacs.d/elpa/parseclj-20231203.1905/parseclj-lex.el
(defun parseclj-lex-token-p (token)
"Is the given TOKEN a parseclj-lex TOKEN.
A token is an association list with :token-type as its first key."
(and (consp token)
(consp (car token))
(eq :token-type (caar token))))