Function: rx--translate-intersection
rx--translate-intersection is a byte-compiled function defined in
rx.el.gz.
Signature
(rx--translate-intersection NEGATED BODY)
Documentation
Translate an (intersection ...) construct. Return (REGEXP . PRECEDENCE).
If NEGATED, negate the sense.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/rx.el.gz
(defun rx--translate-intersection (negated body)
"Translate an (intersection ...) construct. Return (REGEXP . PRECEDENCE).
If NEGATED, negate the sense."
(rx--intervals-to-alt negated (rx--charset-intersection body)))