Function: hypb:plist-p

hypb:plist-p is an autoloaded and byte-compiled function defined in hypb.el.

Signature

(hypb:plist-p PLIST)

Documentation

Return t if PLIST is a proper property list, else nil.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb.el
;;;###autoload
(defun hypb:plist-p (plist)
  "Return t if PLIST is a proper property list, else nil."
  (cl-evenp (% (or (proper-list-p plist) 1) 2)))