@brief return whether value is a string @sa https://json.nlohmann.me/api/basic_json/is_string/
| 20578 | /// @brief return whether value is a string |
| 20579 | /// @sa https://json.nlohmann.me/api/basic_json/is_string/ |
| 20580 | constexpr bool is_string() const noexcept |
| 20581 | { |
| 20582 | return m_type == value_t::string; |
| 20583 | } |
| 20584 | |
| 20585 | /// @brief return whether value is a binary array |
| 20586 | /// @sa https://json.nlohmann.me/api/basic_json/is_binary/ |
no outgoing calls
no test coverage detected