| 2988 | */ |
| 2989 | template<typename StringType> |
| 2990 | inline StringType escape(StringType s) |
| 2991 | { |
| 2992 | replace_substring(s, StringType{"~"}, StringType{"~0"}); |
| 2993 | replace_substring(s, StringType{"/"}, StringType{"~1"}); |
| 2994 | return s; |
| 2995 | } |
| 2996 | |
| 2997 | /*! |
| 2998 | * @brief string unescaping as described in RFC 6901 (Sect. 4) |
no test coverage detected