@brief create a BSON serialization of a given JSON value @sa https://json.nlohmann.me/api/basic_json/to_bson/
| 23480 | /// @brief create a BSON serialization of a given JSON value |
| 23481 | /// @sa https://json.nlohmann.me/api/basic_json/to_bson/ |
| 23482 | static std::vector<std::uint8_t> to_bson(const basic_json& j) |
| 23483 | { |
| 23484 | std::vector<std::uint8_t> result; |
| 23485 | to_bson(j, result); |
| 23486 | return result; |
| 23487 | } |
| 23488 | |
| 23489 | /// @brief create a BSON serialization of a given JSON value |
| 23490 | /// @sa https://json.nlohmann.me/api/basic_json/to_bson/ |
nothing calls this directly
no test coverage detected