1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-29 23:01:16 +03:00

📝 add PlantUML

This commit is contained in:
Niels Lohmann
2020-05-24 21:05:35 +02:00
parent 3400af21cd
commit ddf92606ab
6 changed files with 323 additions and 9 deletions

View File

@ -2,10 +2,10 @@
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
- [BSON](bson) (Binary JSON),
- [CBOR](cbor) (Concise Binary Object Representation),
- [MessagePack](messagepack), and
- [UBJSON](ubjson) (Universal Binary JSON Specification)
- [BSON](bson.md) (Binary JSON),
- [CBOR](cbor.md) (Concise Binary Object Representation),
- [MessagePack](messagepack.md), and
- [UBJSON](ubjson.md) (Universal Binary JSON Specification)
to efficiently encode JSON values to byte vectors and to decode such vectors.