| 125 | inline bool starts_with(const std::string_view &target, const std::string_view &prefix) { return detail::starts_with_helper(target, prefix); } |
| 126 | inline bool starts_with(const std::wstring_view &target, const std::wstring_view &prefix) { return detail::starts_with_helper(target, prefix); } |
| 127 | inline bool ends_with(const std::string_view &target, const std::string_view &suffix) { return detail::ends_with_helper(target, suffix); } |
| 128 | inline bool ends_with(const std::wstring_view &target, const std::wstring_view &suffix) { return detail::ends_with_helper(target, suffix); } |
| 129 | |
| 130 | inline std::string_view remove_prefix_equals(std::string_view target, const std::string_view &prefix) { |
no test coverage detected