| 
| 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  | 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.  
  | 
|   | 
| boost::iterator_range< list_iterator >  | make_list (boost::string_ref const &field) | 
|   | Returns a range representing the list.  
  | 
|   | 
| 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.  
  | 
|   | 
| 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  | 
        
        
           | 
          ) | 
           |  |