@brief return whether value is a binary array @sa https://json.nlohmann.me/api/basic_json/is_binary/
| 20541 | /// @brief return whether value is a binary array |
| 20542 | /// @sa https://json.nlohmann.me/api/basic_json/is_binary/ |
| 20543 | constexpr bool is_binary() const noexcept |
| 20544 | { |
| 20545 | return m_type == value_t::binary; |
| 20546 | } |
| 20547 | |
| 20548 | /// @brief return whether value is discarded |
| 20549 | /// @sa https://json.nlohmann.me/api/basic_json/is_discarded/ |
no outgoing calls
no test coverage detected