@brief return whether value is a binary array @sa https://json.nlohmann.me/api/basic_json/is_binary/
| 20585 | /// @brief return whether value is a binary array |
| 20586 | /// @sa https://json.nlohmann.me/api/basic_json/is_binary/ |
| 20587 | constexpr bool is_binary() const noexcept |
| 20588 | { |
| 20589 | return m_type == value_t::binary; |
| 20590 | } |
| 20591 | |
| 20592 | /// @brief return whether value is discarded |
| 20593 | /// @sa https://json.nlohmann.me/api/basic_json/is_discarded/ |
no outgoing calls
no test coverage detected