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