#include <algorithm>#include <string>

Go to the source code of this file.
Namespaces | |
| websocketpp | |
| Namespace for the WebSocket++ project. | |
| websocketpp::utility | |
| Generic non-websocket specific utility functions and data structures. | |
Functions | |
| std::string | websocketpp::utility::to_lower (std::string const &in) |
| Convert a string to lowercase. More... | |
| std::string | websocketpp::utility::to_hex (std::string const &input) |
| Convert std::string to ascii printed string of hex digits. More... | |
| std::string | websocketpp::utility::to_hex (uint8_t const *input, size_t length) |
| Convert byte array (uint8_t) to ascii printed string of hex digits. More... | |
| std::string | websocketpp::utility::to_hex (char const *input, size_t length) |
| Convert char array to ascii printed string of hex digits. More... | |
| std::string | websocketpp::utility::string_replace_all (std::string subject, std::string const &search, std::string const &replace) |
| Replace all occurrances of a substring with another. More... | |