Popularity
1.7
Stable
Activity
0.0
Stable
25
5
11

Description

jvar tries to capture some of the expressiveness of JavaScript and bring it into C++

In particular, it implements a Variant type which is similar to 'var' in JS. Like JS, you can store data of any type into it. You can have objects, arrays, arrays of objects, objects with arrays, etc and nest them to any level. You can even have function objects with closure. You can write out Variant as JSON and you can parse JSON directly into a Variant.

The Variant, combined with JSON and simple automatic memory management, makes for a very powerful data structure even in C++. jvar is designed to be very fast. Because the backing data structures are optimized, JSON parsing speed is very fast. Special attention has been paid to how often things are copied and how often memory is allocated.

jvar doesn't use have any dependencies. It doesn't use Boost and hardly uses STL. It only uses std::string--but even with that jvar tries to minimize memory allocations. Some C++11 features are optio

Programming language: C++
License: MIT License
Tags: Containers     JSON     C++11    

jvar alternatives and similar libraries

Based on the "JSON" category.
Alternatively, view jvar alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of jvar or a related project?

Add another 'JSON' Library