Function: comp-vec-data
comp-vec-data is a byte-compiled function defined in comp.el.gz.
Signature
(comp-vec-data CL-X)
Documentation
Access slot "data" of comp-vec struct CL-X.
Payload data.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(cl-defstruct (comp-vec (:copier nil))
"A re-sizable vector like object."
(data (make-hash-table :test #'eql) :type hash-table
:documentation "Payload data.")
(beg 0 :type integer)
(end 0 :type natnum))