Function: comp-nargs-rest

comp-nargs-rest is a byte-compiled function defined in comp.el.gz.

Signature

(comp-nargs-rest CL-X)

Documentation

Access slot "rest" of comp-nargs struct CL-X.

t if rest argument is present.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(cl-defstruct (comp-nargs (:include comp-args-base))
  "Describe args when the function signature is of kind:
(ptrdiff_t nargs, Lisp_Object *args)."
  (nonrest nil :type integer
           :documentation "Number of non rest arguments.")
  (rest nil :type boolean
        :documentation "t if rest argument is present."))