@brief return the type of the JSON value (explicit) @sa https://json.nlohmann.me/api/basic_json/type/
| 20457 | /// @brief return the type of the JSON value (explicit) |
| 20458 | /// @sa https://json.nlohmann.me/api/basic_json/type/ |
| 20459 | constexpr value_t type() const noexcept |
| 20460 | { |
| 20461 | return m_type; |
| 20462 | } |
| 20463 | |
| 20464 | /// @brief return whether type is primitive |
| 20465 | /// @sa https://json.nlohmann.me/api/basic_json/is_primitive/ |