| 11934 | } |
| 11935 | |
| 11936 | bool overlaps(std::string_view input1, const std::string& input2) noexcept { |
| 11937 | ada_log("helpers::overlaps check if string_view '", input1, "' [", |
| 11938 | input1.size(), " bytes] is part of string '", input2, "' [", |
| 11939 | input2.size(), " bytes]"); |
| 11940 | return !input1.empty() && !input2.empty() && input1.data() >= input2.data() && |
| 11941 | input1.data() < input2.data() + input2.size(); |
| 11942 | } |
| 11943 | |
| 11944 | template <class url_type> |
| 11945 | ada_really_inline void strip_trailing_spaces_from_opaque_path( |
no test coverage detected