Function: mapp
mapp is a byte-compiled function defined in map.el.gz.
Signature
(mapp MAP)
Documentation
Return non-nil if MAP is a map (alist/plist, hash-table, array, ...).
Implementations
(mapp MAP) in `map.el'.
Undocumented
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/map.el.gz
(cl-defgeneric mapp (map)
"Return non-nil if MAP is a map (alist/plist, hash-table, array, ...)."
(or (listp map)
(hash-table-p map)
(arrayp map)))