@brief return whether type is primitive @sa https://json.nlohmann.me/api/basic_json/is_primitive/
| 20464 | /// @brief return whether type is primitive |
| 20465 | /// @sa https://json.nlohmann.me/api/basic_json/is_primitive/ |
| 20466 | constexpr bool is_primitive() const noexcept |
| 20467 | { |
| 20468 | return is_null() || is_string() || is_boolean() || is_number() || is_binary(); |
| 20469 | } |
| 20470 | |
| 20471 | /// @brief return whether type is structured |
| 20472 | /// @sa https://json.nlohmann.me/api/basic_json/is_structured/ |
nothing calls this directly
no test coverage detected