Function: obarrayp
obarrayp is a byte-compiled function defined in obarray.el.gz.
Signature
(obarrayp OBJECT)
Documentation
Return t if OBJECT is an obarray.
Source Code
;; Defined in /usr/src/emacs/lisp/obarray.el.gz
(defun obarrayp (object)
"Return t if OBJECT is an obarray."
(and (vectorp object)
(< 0 (length object))))