-[Binary formats (CBOR and MessagePack)](#binary-formats-cbor-and-messagepack)
-[Binary formats (CBOR, MessagePack, and UBJSON)](#binary-formats-cbor-messagepack-and-ubjson)
-[Supported compilers](#supported-compilers)
-[Supported compilers](#supported-compilers)
-[License](#license)
-[License](#license)
-[Contact](#contact)
-[Contact](#contact)
...
@@ -715,9 +715,9 @@ struct bad_serializer
...
@@ -715,9 +715,9 @@ struct bad_serializer
};
};
```
```
### Binary formats (CBOR and MessagePack)
### Binary formats (CBOR, MessagePack, and UBJSON)
Though JSON is a ubiquitous data format, it is not a very compact format suitable for data exchange, for instance over a network. Hence, the library supports [CBOR](http://cbor.io)(Concise Binary Object Representation) and [MessagePack](http://msgpack.org) to efficiently encode JSON values to byte vectors and to decode such vectors.
Though JSON is a ubiquitous data format, it is not a very compact format suitable for data exchange, for instance over a network. Hence, the library supports [CBOR](http://cbor.io)(Concise Binary Object Representation), [MessagePack](http://msgpack.org), and [UBJSON](http://ubjson.org)(Universal Binary JSON Specification) to efficiently encode JSON values to byte vectors and to decode such vectors.