(map: &mut HashMap<&'static str, StandardFunction>)
| 14 | |
| 15 | #[inline(always)] |
| 16 | pub fn register_std_regex_functions(map: &mut HashMap<&'static str, StandardFunction>) { |
| 17 | map.insert("regexp_instr", regexp_instr); |
| 18 | map.insert("regexp_like", regexp_like); |
| 19 | map.insert("regexp_replace", regexp_replace); |
| 20 | map.insert("regexp_substr", regexp_substr); |
| 21 | } |
| 22 | |
| 23 | #[inline(always)] |
| 24 | pub fn register_std_regex_function_signatures(map: &mut HashMap<&'static str, Signature>) { |
no outgoing calls
no test coverage detected
searching dependent graphs…