MySQL 9.1.0
Source Code Documentation
|
Classes | |
class | Range |
Class to turn C array into range. More... | |
class | RangeReverse |
Class for creating a reverse range from another range. More... | |
Functions | |
std::vector< std::string > HARNESS_EXPORT | wrap_string (const std::string &to_wrap, std::size_t width, std::size_t indent_size) |
HARNESS_EXPORT std::string | string_format (const char *format,...) |
bool | matches_glob (const std::string &word, const std::string &pattern) |
void | sleep_seconds (unsigned int seconds) |
bool | regex_pattern_matches (const std::string &s, const std::string &pattern) |
std::string | dirname (const std::string &path) |
std::string | basename (const std::string &path) |
void | strip (std::string *str, const char *chars=" \t\n\r\f\v") |
Remove starting and trailing delimiters from string. More... | |
std::string | strip_copy (std::string str, const char *chars) |
std::vector< std::string > | wrap_string (const std::string &to_wrap, size_t width, size_t indent_size) |
bool | ends_with (const std::string &str, const std::string &suffix) |
bool | starts_with (const std::string &str, const std::string &prefix) |
template<class Type > | |
Range< Type > | make_range (Type *ptr, size_t length) |
Create a range from a plain C array. More... | |
template<typename Range > | |
RangeReverse< Range > | reverse (Range &x) |
Iterate over a range in reverse. More... | |
template<class Map > | |
std::pair< typename Map::iterator, typename Map::iterator > | find_range_first (Map &assoc, const typename Map::key_type::first_type &first, typename Map::iterator start) |
template<class Map > | |
std::pair< typename Map::iterator, typename Map::iterator > | find_range_first (Map &assoc, const typename Map::key_type::first_type &first) |
template<class Map > | |
std::pair< typename Map::const_iterator, typename Map::const_iterator > | find_range_first (const Map &assoc, const typename Map::key_type::first_type &first, typename Map::const_iterator start) |
template<class Map > | |
std::pair< typename Map::const_iterator, typename Map::const_iterator > | find_range_first (const Map &assoc, const typename Map::key_type::first_type &first) |
std::string mysql_harness::utility::basename | ( | const std::string & | path | ) |
std::string mysql_harness::utility::dirname | ( | const std::string & | path | ) |
bool mysql_harness::utility::ends_with | ( | const std::string & | str, |
const std::string & | suffix | ||
) |
std::pair< typename Map::const_iterator, typename Map::const_iterator > mysql_harness::utility::find_range_first | ( | const Map & | assoc, |
const typename Map::key_type::first_type & | first | ||
) |
std::pair< typename Map::const_iterator, typename Map::const_iterator > mysql_harness::utility::find_range_first | ( | const Map & | assoc, |
const typename Map::key_type::first_type & | first, | ||
typename Map::const_iterator | start | ||
) |
std::pair< typename Map::iterator, typename Map::iterator > mysql_harness::utility::find_range_first | ( | Map & | assoc, |
const typename Map::key_type::first_type & | first | ||
) |
std::pair< typename Map::iterator, typename Map::iterator > mysql_harness::utility::find_range_first | ( | Map & | assoc, |
const typename Map::key_type::first_type & | first, | ||
typename Map::iterator | start | ||
) |
Range< Type > mysql_harness::utility::make_range | ( | Type * | ptr, |
size_t | length | ||
) |
Create a range from a plain C array.
This function create a range from a plain array so that arrays can be used in range-based loops.
bool mysql_harness::utility::matches_glob | ( | const std::string & | word, |
const std::string & | pattern | ||
) |
bool mysql_harness::utility::regex_pattern_matches | ( | const std::string & | s, |
const std::string & | pattern | ||
) |
RangeReverse< Range > mysql_harness::utility::reverse | ( | Range & | x | ) |
Iterate over a range in reverse.
Function take a range, which can be any sequence container, and return a reverse range that iterate the sequence in reverse.
Typical use-case is:
void mysql_harness::utility::sleep_seconds | ( | unsigned int | seconds | ) |
bool mysql_harness::utility::starts_with | ( | const std::string & | str, |
const std::string & | prefix | ||
) |
std::string mysql_harness::utility::string_format | ( | const char * | format, |
... | |||
) |
void mysql_harness::utility::strip | ( | std::string * | str, |
const char * | chars | ||
) |
Remove starting and trailing delimiters from string.
HARNESS_EXPORT std::string mysql_harness::utility::strip_copy | ( | std::string | str, |
const char * | chars | ||
) |
std::vector< std::string > mysql_harness::utility::wrap_string | ( | const std::string & | to_wrap, |
size_t | width, | ||
size_t | indent_size | ||
) |
std::vector< std::string > HARNESS_EXPORT mysql_harness::utility::wrap_string | ( | const std::string & | to_wrap, |
std::size_t | width, | ||
std::size_t | indent_size | ||
) |