|
| bool | is_lws (char c) |
| | Returns true if c is linear white space. More...
|
| |
| bool | is_white (char c) |
| | Returns true if c is any whitespace character. More...
|
| |
| bool | is_control (char c) |
| | Returns true if c is a control character. More...
|
| |
| bool | is_separator (char c) |
| | Returns true if c is a separator. More...
|
| |
| bool | is_char (char c) |
| | Returns true if c is a character. More...
|
| |
| template<class FwdIter > |
| FwdIter | trim_left (FwdIter first, FwdIter last) |
| |
| template<class FwdIter > |
| FwdIter | trim_right (FwdIter first, FwdIter last) |
| |
| template<class CharT , class Traits , class Allocator > |
| void | trim_right_in_place (std::basic_string< CharT, Traits, Allocator > &s) |
| |
| template<class FwdIter > |
| std::pair< FwdIter, FwdIter > | trim (FwdIter first, FwdIter last) |
| |
| template<class String > |
| String | trim (String const &s) |
| |
| template<class String > |
| String | trim_right (String const &s) |
| |
| std::string | trim (std::string const &s) |
| |
| 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 |
|
) |
| |