@brief return whether value is a string @sa https://json.nlohmann.me/api/basic_json/is_string/
| 1396 | /// @brief return whether value is a string |
| 1397 | /// @sa https://json.nlohmann.me/api/basic_json/is_string/ |
| 1398 | constexpr bool is_string() const noexcept |
| 1399 | { |
| 1400 | return m_data.m_type == value_t::string; |
| 1401 | } |
| 1402 | |
| 1403 | /// @brief return whether value is a binary array |
| 1404 | /// @sa https://json.nlohmann.me/api/basic_json/is_binary/ |
no outgoing calls
no test coverage detected