| 266 | } |
| 267 | |
| 268 | fl::optional<float> as_float() const FL_NOEXCEPT { |
| 269 | if (!mValue) return fl::nullopt; |
| 270 | return mValue->as_float(); |
| 271 | } |
| 272 | |
| 273 | fl::optional<double> as_double() const FL_NOEXCEPT { |
| 274 | if (!mValue) return fl::nullopt; |
no outgoing calls
no test coverage detected