@brief return whether value is an array @sa https://json.nlohmann.me/api/basic_json/is_array/
| 1354 | /// @brief return whether value is an array |
| 1355 | /// @sa https://json.nlohmann.me/api/basic_json/is_array/ |
| 1356 | constexpr bool is_array() const noexcept |
| 1357 | { |
| 1358 | return m_type == value_t::array; |
| 1359 | } |
| 1360 | |
| 1361 | /// @brief return whether value is a string |
| 1362 | /// @sa https://json.nlohmann.me/api/basic_json/is_string/ |
no outgoing calls
no test coverage detected