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