#include <charconv>
#include <chrono>
#include <limits>
#include <stdexcept>
#include <string>
#include <string_view>
#include <type_traits>
#include "harness_export.h"
Go to the source code of this file.
|
double HARNESS_EXPORT | mysql_harness::option_as_double (const std::string &value, const std::string &option_desc, double min_value=0, double max_value=std::numeric_limits< double >::max()) |
|
template<typename T > |
T | mysql_harness::option_as_int (const std::string_view &value, const std::string &option_desc, T min_value=std::numeric_limits< T >::min(), T max_value=std::numeric_limits< T >::max()) |
| Gets an integer using the given option value. More...
|
|
template<typename T > |
T | mysql_harness::option_as_uint (const std::string_view &value, const std::string &option_desc, T min_value=std::numeric_limits< T >::min(), T max_value=std::numeric_limits< T >::max()) |
| Get a unsigned integer. More...
|
|