@brief return whether value is a binary array @sa https://json.nlohmann.me/api/basic_json/is_binary/
| 20682 | /// @brief return whether value is a binary array |
| 20683 | /// @sa https://json.nlohmann.me/api/basic_json/is_binary/ |
| 20684 | constexpr bool is_binary() const noexcept |
| 20685 | { |
| 20686 | return m_data.m_type == value_t::binary; |
| 20687 | } |
| 20688 | |
| 20689 | /// @brief return whether value is discarded |
| 20690 | /// @sa https://json.nlohmann.me/api/basic_json/is_discarded/ |
no outgoing calls
no test coverage detected