Function: obarrayp
obarrayp is a function defined in lread.c.
Signature
(obarrayp OBJECT)
Documentation
Return t iff OBJECT is an obarray.
Other relevant functions are documented in the symbol group.
Probably introduced at or before Emacs version 25.1.
Shortdoc
;; symbol
(obarrayp (obarray-make))
=> t
(obarrayp nil)
=> nil
Source Code
// Defined in /usr/src/emacs/src/lread.c
{
return OBARRAYP (object) ? Qt : Qnil;
}