boost::urls::string_token::append_to
Create a string token for appending to a plain string
Synopsis
template<class Alloc = std::allocator<char>>
/* implementation-defined */
append_to(std::basic_string<char, std::char_traits<char>, Alloc>& s);
Description
This function creates a StringToken
which appends to an existing plain string.
Functions using this token will append the result to the existing string and return a reference to it.
Parameters
Name |
Description |
s |
The string to append |
Created with MrDocs