|
| 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.
|
| template<class FwdIt, class Result = std::vector<std::basic_string<typename std::iterator_traits<FwdIt>::value_type>>> |
| Result | splitCommas (FwdIt first, FwdIt last) |
| template<class Result = std::vector<std::string>> |
| Result | splitCommas (boost::beast::string_view const &s) |
| bool | ciEqual (boost::string_ref s1, boost::string_ref s2) |
| | Returns true if two strings are equal.
|
| boost::iterator_range< ListIterator > | makeList (boost::string_ref const &field) |
| | Returns a range representing the list.
|
| template<class = void> |
| bool | tokenInList (boost::string_ref const &value, boost::string_ref const &token) |
| | Returns true if the specified token exists in the list.
|
| template<bool IsRequest, class Body, class Fields> |
| bool | isKeepAlive (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 ) |