@brief return whether type is structured @sa https://json.nlohmann.me/api/basic_json/is_structured/
| 20515 | /// @brief return whether type is structured |
| 20516 | /// @sa https://json.nlohmann.me/api/basic_json/is_structured/ |
| 20517 | constexpr bool is_structured() const noexcept |
| 20518 | { |
| 20519 | return is_array() || is_object(); |
| 20520 | } |
| 20521 | |
| 20522 | /// @brief return whether value is null |
| 20523 | /// @sa https://json.nlohmann.me/api/basic_json/is_null/ |