@brief return whether value is an array @sa https://json.nlohmann.me/api/basic_json/is_array/
| 1389 | /// @brief return whether value is an array |
| 1390 | /// @sa https://json.nlohmann.me/api/basic_json/is_array/ |
| 1391 | constexpr bool is_array() const noexcept |
| 1392 | { |
| 1393 | return m_data.m_type == value_t::array; |
| 1394 | } |
| 1395 | |
| 1396 | /// @brief return whether value is a string |
| 1397 | /// @sa https://json.nlohmann.me/api/basic_json/is_string/ |
no outgoing calls
no test coverage detected