| 251 | bool is_audio() const FL_NOEXCEPT { return mValue && mValue->is_audio(); } |
| 252 | bool is_bytes() const FL_NOEXCEPT { return mValue && mValue->is_bytes(); } |
| 253 | bool is_floats() const FL_NOEXCEPT { return mValue && mValue->is_floats(); } |
| 254 | |
| 255 | // Safe extractors |
| 256 | fl::optional<bool> as_bool() const FL_NOEXCEPT { return mValue ? mValue->as_bool() : fl::nullopt; } |