@brief return whether value is a string @sa https://json.nlohmann.me/api/basic_json/is_string/
| 21410 | /// @brief return whether value is a string |
| 21411 | /// @sa https://json.nlohmann.me/api/basic_json/is_string/ |
| 21412 | constexpr bool is_string() const noexcept |
| 21413 | { |
| 21414 | return m_data.m_type == value_t::string; |
| 21415 | } |
| 21416 | |
| 21417 | /// @brief return whether value is a binary array |
| 21418 | /// @sa https://json.nlohmann.me/api/basic_json/is_binary/ |
no outgoing calls
no test coverage detected