! @brief return the type of the JSON value (explicit) Return the type of the JSON value as a value from the @ref value_t enumeration. @return the type of the JSON value Value type | return value ------------------------- | ------------------------- null | value_t::null
| 18809 | @since version 1.0.0 |
| 18810 | */ |
| 18811 | constexpr value_t type() const noexcept |
| 18812 | { |
| 18813 | return m_type; |
| 18814 | } |
| 18815 | |
| 18816 | /*! |
| 18817 | @brief return whether type is primitive |
no outgoing calls
no test coverage detected