@brief return whether type is structured @sa https://json.nlohmann.me/api/basic_json/is_structured/
| 20612 | /// @brief return whether type is structured |
| 20613 | /// @sa https://json.nlohmann.me/api/basic_json/is_structured/ |
| 20614 | constexpr bool is_structured() const noexcept |
| 20615 | { |
| 20616 | return is_array() || is_object(); |
| 20617 | } |
| 20618 | |
| 20619 | /// @brief return whether value is null |
| 20620 | /// @sa https://json.nlohmann.me/api/basic_json/is_null/ |