Function: comp--cstr-intersection-make
comp--cstr-intersection-make is a byte-compiled function defined in
comp-cstr.el.gz.
Signature
(comp--cstr-intersection-make &rest SRCS)
Documentation
Combine SRCS by intersection set operation and return a new constraint.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp-cstr.el.gz
(defun comp--cstr-intersection-make (&rest srcs)
"Combine SRCS by intersection set operation and return a new constraint."
(apply #'comp-cstr-intersection (make-comp-cstr) srcs))