Zero-copy pointer accessors
| 287 | } |
| 288 | // Zero-copy pointer accessors |
| 289 | const json_array* as_array() const FL_NOEXCEPT { return mValue ? mValue->as_array() : nullptr; } |
| 290 | const json_object* as_object() const FL_NOEXCEPT { return mValue ? mValue->as_object() : nullptr; } |
| 291 | |
| 292 | // Explicit copy methods - use when you need an owned copy or type conversion |
no outgoing calls
no test coverage detected