Classes
-
namespace ljson the namespace for ljson
- class array the class that holds a json array
- class error a class type inspired by std::
error_code to handle errors - class expected an implementation of std::expected to allow using ljson with C++20. check the cppreference
- class monostate an implementation of std::
monostate to allow using ljson with C++20. check the cppreference - class node the class that holds a json node which is either ljson::
object, ljson:: array or ljson:: value - class null_type an empty class to represent a json null value
- class object the class that holds a json object
- class value holds a json value such as <std::
string, double, int64_t, bool, null_ type, monostate>