13using std::numeric_limits;
15using std::string_view;
25 static constexpr float MAX_VALUE { numeric_limits<float>::max() };
26 static constexpr float MIN_VALUE { -numeric_limits<float>::max() };
27 static constexpr float NAN_VALUE { numeric_limits<float>::quiet_NaN() };
34 static bool is(
const string& str);
41 static bool viewIs(
const string_view& str);
48 static float parse(
const string& str);
55 static float viewParse(
const string_view& str);
62 inline static bool isNaN(
float value) {
72 return isfinite(value);
83 return (f2 * t) + ((1.0f - t) * f1);
static bool isFinite(float value)
Check if float is finite.
static bool viewIs(const string_view &str)
Check if given string is a float string.
static constexpr float MAX_VALUE
static float viewParse(const string_view &str)
Parse float.
static float parse(const string &str)
Parse float.
static constexpr float NAN_VALUE
static constexpr float MIN_VALUE
static bool isNaN(float value)
Check if float is not a number.
static bool is(const string &str)
Check if given string is a float string.
static float interpolateLinear(float f1, float f2, float t)
Interpolates between float 1 and float 2 by 0f<=t<=1f linearly.