Function: comp-nargs-min
comp-nargs-min is a byte-compiled function defined in comp.el.gz.
Signature
(comp-nargs-min CL-X)
Documentation
Access slot "min" of comp-nargs struct CL-X.
Minimum number of arguments allowed.
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."))