| 163 | } |
| 164 | |
| 165 | void null_example() |
| 166 | { |
| 167 | json j; |
| 168 | j.try_emplace("hello", json::null()); |
| 169 | |
| 170 | std::vector<char> buffer; |
| 171 | bson::encode_bson(j, buffer); |
| 172 | std::cout << jsoncons::byte_string_view(buffer) << "\n\n"; |
| 173 | } |
| 174 | |
| 175 | void duration_example1() |
| 176 | { |
no test coverage detected