@brief return whether type is structured @sa https://json.nlohmann.me/api/basic_json/is_structured/
| 1333 | /// @brief return whether type is structured |
| 1334 | /// @sa https://json.nlohmann.me/api/basic_json/is_structured/ |
| 1335 | constexpr bool is_structured() const noexcept |
| 1336 | { |
| 1337 | return is_array() || is_object(); |
| 1338 | } |
| 1339 | |
| 1340 | /// @brief return whether value is null |
| 1341 | /// @sa https://json.nlohmann.me/api/basic_json/is_null/ |