17using std::string_view;
25bool Float::is(
const string& str) {
29 str.empty() ==
false &&
30 find_if(trimmedStr.begin() + (trimmedStr[0] ==
'-'?1:0), trimmedStr.end(), [&dotCount](
char c) { return isdigit(c) == false && (c !=
'.' || ++dotCount > 1); }) == trimmedStr.end();
37 str.empty() ==
false &&
38 find_if(trimmedStr.begin() + (trimmedStr[0] ==
'-'?1:0), trimmedStr.end(), [&dotCount](
char c) { return isdigit(c) == false && (c !=
'.' || ++dotCount > 1); }) == trimmedStr.end();
43 if (trimmedStr.empty() ==
true)
return 0.0f;
44 if (trimmedStr ==
"-")
return -0.0f;
48 (str.empty() ==
false &&
49 find_if(trimmedStr.begin() + (trimmedStr[0] ==
'-'?1:0), trimmedStr.end(), [&dotCount, &digitSum](
char c) { if (isdigit(c) == true) digitSum+= c -
'0'; return isdigit(c) == false && (c !=
'.' || ++dotCount > 1); }) == trimmedStr.end()) ==
true && digitSum > 0?stof(trimmedStr):0.0f;
54 if (trimmedStr.empty() ==
true)
return 0.0f;
55 if (trimmedStr ==
"-")
return -0.0f;
57 if (str.size() > 32) {
62 memcpy(buf, &trimmedStr[0], trimmedStr.size());
static void println()
Print new line to console.
static bool viewIs(const string_view &str)
Check if given string is a float string.
static float viewParse(const string_view &str)
Parse float.
static float parse(const string &str)
Parse float.