@brief return whether value is an array @sa https://json.nlohmann.me/api/basic_json/is_array/
| 20668 | /// @brief return whether value is an array |
| 20669 | /// @sa https://json.nlohmann.me/api/basic_json/is_array/ |
| 20670 | constexpr bool is_array() const noexcept |
| 20671 | { |
| 20672 | return m_data.m_type == value_t::array; |
| 20673 | } |
| 20674 | |
| 20675 | /// @brief return whether value is a string |
| 20676 | /// @sa https://json.nlohmann.me/api/basic_json/is_string/ |
no outgoing calls
no test coverage detected