| 39 | bool HasRange() const { return std::abs(this->max_value - this->min_value) > std::numeric_limits<float>::epsilon(); } |
| 40 | |
| 41 | bool HasPrecision() const { return this->precision != 0 || this->width != 0; } |
| 42 | |
| 43 | std::string GetFloatFormat() const { |
| 44 | if (this->HasPrecision()) { |