Function: make-comp-data-container

make-comp-data-container is a byte-compiled function defined in comp.el.gz.

Signature

(make-comp-data-container &key L IDX)

Documentation

Constructor for objects of type comp-data-container.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(cl-defstruct comp-data-container
  "Data relocation container structure."
  (l () :type list
     :documentation "Constant objects used by functions.")
  (idx (make-hash-table :test 'comp-imm-equal-test) :type hash-table
       :documentation "Obj -> position into the previous field."))