Function: parseedn-alist-p
parseedn-alist-p is a byte-compiled function defined in parseedn.el.
Signature
(parseedn-alist-p LIST)
Documentation
Non-null if and only if LIST is an alist with simple keys.
Source Code
;; Defined in ~/.emacs.d/elpa/parseedn-20231203.1909/parseedn.el
(defun parseedn-alist-p (list)
"Non-null if and only if LIST is an alist with simple keys."
(while (consp list)
(setq list (if (and (consp (car list))
(atom (caar list)))
(cdr list)
'not-alist)))
(null list))