@brief return whether value is a binary array @sa https://json.nlohmann.me/api/basic_json/is_binary/
| 1369 | /// @brief return whether value is a binary array |
| 1370 | /// @sa https://json.nlohmann.me/api/basic_json/is_binary/ |
| 1371 | constexpr bool is_binary() const noexcept |
| 1372 | { |
| 1373 | return m_type == value_t::binary; |
| 1374 | } |
| 1375 | |
| 1376 | /// @brief return whether value is discarded |
| 1377 | /// @sa https://json.nlohmann.me/api/basic_json/is_discarded/ |
no outgoing calls
no test coverage detected