pub fn non_empty(left: &str, right: &str) -> bool
Expand description

Check if left and right contains a non empty intersection.

Examples

use regex_intersect::non_empty;
assert!(non_empty("a.*", "ab.*cd"))