Function: rx--charset-intersection
rx--charset-intersection is a byte-compiled function defined in
rx.el.gz.
Signature
(rx--charset-intersection CHARSETS)
Documentation
Intersection of CHARSETS, as a set of intervals.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/rx.el.gz
(defun rx--charset-intersection (charsets)
"Intersection of CHARSETS, as a set of intervals."
(rx--foldl #'rx--intersect-intervals rx--charset-all
(mapcar #'rx--charset-intervals charsets)))