Function: make-comp-nargs
make-comp-nargs is a byte-compiled function defined in comp.el.gz.
Signature
(make-comp-nargs &key MIN NONREST REST)
Documentation
Constructor for objects of type comp-nargs.
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."))