@brief return whether value is an array @sa https://json.nlohmann.me/api/basic_json/is_array/
| 20527 | /// @brief return whether value is an array |
| 20528 | /// @sa https://json.nlohmann.me/api/basic_json/is_array/ |
| 20529 | constexpr bool is_array() const noexcept |
| 20530 | { |
| 20531 | return m_type == value_t::array; |
| 20532 | } |
| 20533 | |
| 20534 | /// @brief return whether value is a string |
| 20535 | /// @sa https://json.nlohmann.me/api/basic_json/is_string/ |
no outgoing calls
no test coverage detected