Function: c--intersection

c--intersection is a macro defined in cc-defs.el.gz.

Signature

(c--intersection LISZT1 LISZT2 &rest OTHER-ARGS)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-defs.el.gz
(defmacro c--intersection (liszt1 liszt2 &rest other-args)
  ;; Macro to smooth out the renaming of `intersection' in Emacs 24.3.
  (declare (debug (form form &rest [symbolp form])))
  (if (fboundp 'intersection)
      `(intersection ,liszt1 ,liszt2 ,@other-args)
    `(cl-intersection ,liszt1 ,liszt2 ,@other-args)))