| 127 | bool JsonNumberFieldImpl::operator==(int v) const FL_NOEXCEPT { return fl::almost_equal(value(), static_cast<float>(v)); } |
| 128 | |
| 129 | bool JsonNumberFieldImpl::operator!=(float v) const FL_NOEXCEPT { return !fl::almost_equal(value(), v); } |
| 130 | |
| 131 | bool JsonNumberFieldImpl::operator!=(int v) const FL_NOEXCEPT { return !fl::almost_equal(value(), static_cast<float>(v)); } |
| 132 |
nothing calls this directly
no test coverage detected