@brief return whether type is structured @sa https://json.nlohmann.me/api/basic_json/is_structured/
| 1298 | /// @brief return whether type is structured |
| 1299 | /// @sa https://json.nlohmann.me/api/basic_json/is_structured/ |
| 1300 | constexpr bool is_structured() const noexcept |
| 1301 | { |
| 1302 | return is_array() || is_object(); |
| 1303 | } |
| 1304 | |
| 1305 | /// @brief return whether value is null |
| 1306 | /// @sa https://json.nlohmann.me/api/basic_json/is_null/ |