@brief return whether value is an array @sa https://json.nlohmann.me/api/basic_json/is_array/
| 20571 | /// @brief return whether value is an array |
| 20572 | /// @sa https://json.nlohmann.me/api/basic_json/is_array/ |
| 20573 | constexpr bool is_array() const noexcept |
| 20574 | { |
| 20575 | return m_type == value_t::array; |
| 20576 | } |
| 20577 | |
| 20578 | /// @brief return whether value is a string |
| 20579 | /// @sa https://json.nlohmann.me/api/basic_json/is_string/ |
no outgoing calls
no test coverage detected