@brief return the type of the JSON value (explicit) @sa https://json.nlohmann.me/api/basic_json/type/
| 1319 | /// @brief return the type of the JSON value (explicit) |
| 1320 | /// @sa https://json.nlohmann.me/api/basic_json/type/ |
| 1321 | constexpr value_t type() const noexcept |
| 1322 | { |
| 1323 | return m_data.m_type; |
| 1324 | } |
| 1325 | |
| 1326 | /// @brief return whether type is primitive |
| 1327 | /// @sa https://json.nlohmann.me/api/basic_json/is_primitive/ |