Function: comp-cstr-f-args

comp-cstr-f-args is a byte-compiled function defined in comp-cstr.el.gz.

Signature

(comp-cstr-f-args comp-cstr-f-args X)

Documentation

Access slot "args" of comp-cstr-f struct X.

List of comp-cstr for its arguments.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp-cstr.el.gz
(cl-defstruct comp-cstr-f
  "Internal constraint representation for a function."
  (args () :type list
        :documentation "List of `comp-cstr' for its arguments.")
  (ret nil :type (or comp-cstr comp-cstr-f)
       :documentation "Returned value."))