Explicit copy methods - use when you need an owned copy or type conversion
| 291 | |
| 292 | // Explicit copy methods - use when you need an owned copy or type conversion |
| 293 | fl::optional<json_array> clone_array() const FL_NOEXCEPT { return mValue ? mValue->clone_array() : fl::nullopt; } |
| 294 | fl::optional<json_object> clone_object() const FL_NOEXCEPT { return mValue ? mValue->clone_object() : fl::nullopt; } |
| 295 | |
| 296 | // Copy packed-array elements into a caller-owned span with type conversion. |
no outgoing calls
no test coverage detected