@brief return whether value is a string @sa https://json.nlohmann.me/api/basic_json/is_string/
| 20534 | /// @brief return whether value is a string |
| 20535 | /// @sa https://json.nlohmann.me/api/basic_json/is_string/ |
| 20536 | constexpr bool is_string() const noexcept |
| 20537 | { |
| 20538 | return m_type == value_t::string; |
| 20539 | } |
| 20540 | |
| 20541 | /// @brief return whether value is a binary array |
| 20542 | /// @sa https://json.nlohmann.me/api/basic_json/is_binary/ |
no outgoing calls
no test coverage detected