Function: comp-vec-beg

comp-vec-beg is a byte-compiled function defined in comp.el.gz.

Signature

(comp-vec-beg comp-vec-beg X)

Documentation

Access slot "beg" of comp-vec struct X.

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))