Variable: obarray
obarray is a variable defined in lread.c.
Value
#<obarray n=163406>
Documentation
Symbol table for use by intern and read.
It is a vector whose length ought to be prime for best results.
The vector's contents don't make sense if examined from Lisp programs;
to find all the symbols in an obarray, use mapatoms.
Probably introduced at or before Emacs version 25.1.
Source Code
// Defined in /usr/src/emacs/src/lread.c
DEFVAR_LISP ("obarray", Vobarray,
doc: /* Symbol table for use by `intern' and `read'.
It is a vector whose length ought to be prime for best results.
The vector's contents don't make sense if examined from Lisp programs;
to find all the symbols in an obarray, use `mapatoms'. */);