|
template<class FwdIt , class Result = std::vector< std::basic_string<typename std::iterator_traits<FwdIt>::value_type>>, class Char > |
Result | split (FwdIt first, FwdIt last, Char delim) |
| Parse a character sequence of values separated by commas. More...
|
|
template<class FwdIt , class Result = std::vector< std::basic_string<typename std::iterator_traits<FwdIt>::value_type>>> |
Result | split_commas (FwdIt first, FwdIt last) |
|
template<class Result = std::vector<std::string>> |
Result | split_commas (boost::beast::string_view const &s) |
|
bool | ci_equal (boost::string_ref s1, boost::string_ref s2) |
| Returns true if two strings are equal. More...
|
|
boost::iterator_range< list_iterator > | make_list (boost::string_ref const &field) |
| Returns a range representing the list. More...
|
|
template<class = void> |
bool | token_in_list (boost::string_ref const &value, boost::string_ref const &token) |
| Returns true if the specified token exists in the list. More...
|
|
template<bool isRequest, class Body , class Fields > |
bool | is_keep_alive (boost::beast::http::message< isRequest, Body, Fields > const &m) |
|
template<class FwdIt , class Result = std::vector< std::basic_string<typename std::iterator_traits<FwdIt>::value_type>>, class Char >
Result beast::rfc2616::split |
( |
FwdIt |
first, |
|
|
FwdIt |
last, |
|
|
Char |
delim |
|
) |
| |