Finds position and size of the first element of the path
| 167 | |
| 168 | // Finds position and size of the first element of the path |
| 169 | inline void first_element(string_type const& src, size_type& element_pos, size_type& element_size) |
| 170 | { |
| 171 | first_element(src, element_pos, element_size, src.size()); |
| 172 | } |
| 173 | |
| 174 | // Checks if the second string overlaps in memory with the first string |
| 175 | inline bool is_overlapping(string_type const& str, const value_type* arg) |
no test coverage detected