| 241 | bool is_bool() const FL_NOEXCEPT { return mValue && mValue->is_bool(); } |
| 242 | bool is_int() const FL_NOEXCEPT { return mValue && (mValue->is_int() || mValue->is_bool()); } |
| 243 | bool is_float() const FL_NOEXCEPT { return mValue && mValue->is_float(); } |
| 244 | bool is_double() const FL_NOEXCEPT { return mValue && mValue->is_double(); } |
| 245 | // is_number() returns true if the value is any numeric type (int or float) |
| 246 | bool is_number() const FL_NOEXCEPT { return mValue && mValue->is_number(); } |
no outgoing calls
no test coverage detected