3#if defined(_WIN32) && defined(_MSC_VER)
16using std::numeric_limits;
18using std::string_view;
28 static constexpr int MAX_VALUE { numeric_limits<int>::max() };
29 static constexpr int MIN_VALUE { -numeric_limits<int>::max() };
36 static bool is(
const string& str);
43 static bool viewIs(
const string_view& str);
50 static int parse(
const string& str);
57 static int viewParse(
const string_view& str);
64 inline static const string encode(
const uint32_t decodedInt) {
66 encode(decodedInt, encodedString);
75 inline static const uint32_t
decode(
const string& encodedString) {
77 decode(encodedString, decodedInt);
86 static void encode(
const uint32_t decodedInt,
string& encodedString);
93 static bool decode(
const string& encodedString, uint32_t& decodedInt);
static bool viewIs(const string_view &str)
Check if given string is a integer string.
static int parse(const string &str)
Parse integer.
static constexpr int MIN_VALUE
static const uint32_t decode(const string &encodedString)
Decodes an 6 char string representation to a unsigned 32 bit integer.
static const string encode(const uint32_t decodedInt)
Encodes an 32 bit unsigned integer to a 6 char string representation.
static int viewParse(const string_view &str)
Parse integer.
static constexpr int MAX_VALUE
static bool is(const string &str)
Check if given string is a integer string.