1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/// Returns a compile-time verified regex string literal.
///
/// # Examples
///
/// ```
/// use regex::Regex;
/// let re = const_str::verified_regex!(r"^\d{4}-\d{2}-\d{2}$");
/// assert!(Regex::new(re).is_ok());
/// ```
///
#[macro_export]
macro_rules! verified_regex {
    ($re:literal) => {
        $crate::__imp::verified_regex!($re)
    };
}

/// Asserts that the string literal matches the pattern.
///
/// # Examples
/// ```
/// const_str::regex_assert_match!(r"^\d{4}-\d{2}-\d{2}$", "2014-01-01");
/// ```
#[macro_export]
macro_rules! regex_assert_match {
    ($re:literal, $text:literal) => {
        $crate::__imp::regex_assert_match!($re, $text)
    };
}