(format: &str, case_sensitive: bool)
| 485 | } |
| 486 | |
| 487 | pub fn cached_parser(format: &str, case_sensitive: bool) -> Option<Arc<Parser>> { |
| 488 | get_cached_parser(format, case_sensitive) |
| 489 | } |
| 490 | |
| 491 | /// Convenience function: parse a string with a format pattern. |
| 492 | /// |
no test coverage detected