@@ -32,11 +32,8 @@ The library uses the following mapping from JSON values types to BSON types:
3232
3333!!! warning "Incomplete mapping"
3434
35- The mapping is **incomplete**, since only JSON-objects (and things
36- contained therein) can be serialized to BSON.
37- Also, integers larger than 9223372036854775807 cannot be serialized to BSON,
38- and the keys may not contain U+0000, since they are serialized a
39- zero-terminated c-strings.
35+ The mapping is **incomplete**, since only JSON-objects (and things contained therein) can be serialized to BSON.
36+ Also, keys may not contain U+0000, since they are serialized a zero-terminated c-strings.
4037
4138??? example
4239
@@ -82,6 +79,10 @@ The library maps BSON record types to JSON value types as follows:
8279
8380 The mapping is **incomplete**. The unsupported mappings are indicated in the table above.
8481
82+ !!! note "Handling of BSON type 0x11"
83+
84+ BSON type 0x11 is used to represent uint64 numbers. This library treats these values purely as uint64 numbers
85+ and does not parse them into date-related formats.
8586
8687??? example
8788
@@ -94,8 +95,3 @@ The library maps BSON record types to JSON value types as follows:
9495 ```json
9596 --8<-- "examples/from_bson.output"
9697 ```
97-
98- !!! note "Handling of BSON type 0x11"
99-
100- BSON type 0x11 is used to represent uint64 numbers. This library treats these values purely as uint64 numbers
101- and does not parse them into date-related formats.
0 commit comments