mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-04 12:12:58 +02:00
7890db99d6 Merge #11: Remove deprecated std pair wrappers 40e34852ac Merge #14: Cleaned up namespace imports to reduce symbol collisions 85052a4819 Remove deprecated std::pair wrappers d208f986dd Cleaned up namespace imports to reduce symbol collisions git-subtree-dir: src/univalue git-subtree-split: 7890db99d693572d27ade3e14268bd7236134529
UniValue
Summary
A universal value class, with JSON encoding and decoding.
UniValue is an abstract data type that may be a null, boolean, string, number, array container, or a key/value dictionary container, nested to an arbitrary depth.
This class is aligned with the JSON standard, RFC 7159.
Installation
This project is a standard GNU
autotools
project. Build and install instructions are available in the INSTALL
file provided with GNU autotools.
$ ./autogen.sh
$ ./configure
$ make
Design
UniValue provides a single dynamic RAII C++ object class, and minimizes template use (contra json_spirit).
Description
Languages
C++
63.7%
Python
18.8%
C
13.7%
CMake
1.2%
Shell
0.9%
Other
1.6%