@brief return whether value is a string @sa https://json.nlohmann.me/api/basic_json/is_string/
| 20671 | /// @brief return whether value is a string |
| 20672 | /// @sa https://json.nlohmann.me/api/basic_json/is_string/ |
| 20673 | constexpr bool is_string() const noexcept |
| 20674 | { |
| 20675 | return m_data.m_type == value_t::string; |
| 20676 | } |
| 20677 | |
| 20678 | /// @brief return whether value is a binary array |
| 20679 | /// @sa https://json.nlohmann.me/api/basic_json/is_binary/ |
no outgoing calls
no test coverage detected