reduces constant overhead
(&self)
| 1144 | /// Get a searcher that isn't Sync and can match on &str. |
| 1145 | #[inline(always)] // reduces constant overhead |
| 1146 | pub fn searcher_str(&self) -> ExecNoSyncStr { |
| 1147 | ExecNoSyncStr(self.searcher()) |
| 1148 | } |
| 1149 | |
| 1150 | /// Build a Regex from this executor. |
| 1151 | pub fn into_regex(self) -> re_unicode::Regex { |
no test coverage detected