@brief return whether value is a binary array @sa https://json.nlohmann.me/api/basic_json/is_binary/
| 1404 | /// @brief return whether value is a binary array |
| 1405 | /// @sa https://json.nlohmann.me/api/basic_json/is_binary/ |
| 1406 | constexpr bool is_binary() const noexcept |
| 1407 | { |
| 1408 | return m_data.m_type == value_t::binary; |
| 1409 | } |
| 1410 | |
| 1411 | /// @brief return whether value is discarded |
| 1412 | /// @sa https://json.nlohmann.me/api/basic_json/is_discarded/ |
no outgoing calls
no test coverage detected