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