@brief return the type of the JSON value (explicit) @sa https://json.nlohmann.me/api/basic_json/type/
| 20501 | /// @brief return the type of the JSON value (explicit) |
| 20502 | /// @sa https://json.nlohmann.me/api/basic_json/type/ |
| 20503 | constexpr value_t type() const noexcept |
| 20504 | { |
| 20505 | return m_type; |
| 20506 | } |
| 20507 | |
| 20508 | /// @brief return whether type is primitive |
| 20509 | /// @sa https://json.nlohmann.me/api/basic_json/is_primitive/ |
no outgoing calls
no test coverage detected