Function: built-in-class-index-table
built-in-class-index-table is a byte-compiled function defined in
cl-preloaded.el.gz.
Signature
(built-in-class-index-table built-in-class-index-table X)
Documentation
Access slot "index-table" of built-in-class struct X.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-preloaded.el.gz
(cl-defstruct (built-in-class
(:include cl--class)
(:noinline t)
(:constructor nil)
(:constructor built-in-class--make
(name docstring parent-types
&aux (parents
(mapcar (lambda (type)
(or (get type 'cl--class)
(error "Unknown type: %S" type)))
parent-types))))
(:copier nil))
"Type descriptors for built-in types.
The `slots' (and hence `index-table') are currently unused."
)