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