Go to the source code of this file.
|
| namespace | detail |
| | detail namespace with internal helper functions
|
| |
|
| template<typename StringType > |
| void | detail::replace_substring (StringType &s, const StringType &f, const StringType &t) |
| | replace all occurrences of a substring by another string
|
| |
| template<typename StringType > |
| StringType | detail::escape (StringType s) |
| | string escaping as described in RFC 6901 (Sect. 4)
|
| |
| template<typename StringType > |
| static void | detail::unescape (StringType &s) |
| | string unescaping as described in RFC 6901 (Sect. 4)
|
| |