Function: comp-vec-length
comp-vec-length is a byte-compiled function defined in comp.el.gz.
Signature
(comp-vec-length VEC)
Documentation
Return the number of elements of VEC.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defsubst comp-vec-length (vec)
"Return the number of elements of VEC."
(- (comp-vec-end vec) (comp-vec-beg vec)))