JSON Voorhees
Killer JSON for C++
Loading...
Searching...
No Matches
Class List
Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 123]
 Njsonv
 CadapterAn adapter is both an extractor and a serializer
 Cadapter_builder
 Cadapter_forAn adapter for the type T
 Cast_nodeRepresents an entry in a JSON AST
 Carray_beginThe beginning of an kind::array ([)
 Carray_endThe end of an kind::array (])
 Cbase
 Cbasic_dynamic_size_token
 Cbasic_fixed_size_token
 Cbasic_string_token
 Cdecimal
 Cdocument_endThe end of a document
 Cdocument_startThe start of a document
 Cerror
 Cinteger
 Ckey_canonical
 Ckey_escaped
 Cliteral_false
 Cliteral_null
 Cliteral_true
 Cobject_beginThe beginning of an kind::object ({)
 Cobject_endThe end of an kind::object (})
 Cstring_canonical
 Cstring_escaped
 Cbasic_value_binary_predicate
 Ccompare_traitsTraits describing how to perform various aspects of comparison
 Ccontainer_adapterAn adapter for container types
 Ccontext_baseProvides extra information to routines used for extraction
 Cdiff_resultThe results of the diff operation
 Cduplicate_type_errorException thrown if an insertion of an extractor or serializer into a formats is attempted, but there is already an extractor or serializer for that type
 Cdynamic_merge_rulesAn implementation of merge_rules that allows you to bind whatever functions you want to resolve conflicts
 CencoderAn encoder is responsible for writing values to some form of output
 Cenum_adapterAn adapter for enumeration types
 Cextract_optionsConfiguration for various extraction options. This becomes part of the extraction_context
 Cextraction_context
 Cextraction_errorException thrown if there is any problem running extract
 CproblemDescription of a single problem with extraction
 CextractorAn extractor holds the method for converting JSON source into an arbitrary C++ type
 Cextractor_constructionAn extractor for type T that has a constructor that accepts either a jsonv::value or a jsonv::value and extraction_context
 Cextractor_forAn extractor for the type T
 CformatsSimply put, this class is a collection of extractor and serializer instances
 Cformats_builder
 Cfunction_adapter
 Cfunction_extractorAn extractor which calls a function to perform extraction
 Cfunction_serializer
 Ckind_errorThrown from various value methods when attempting to perform an operation which is not valid for the kind of value
 Cmember_adapter_builder
 Cmerge_rulesThis class is used in merge_explicit for defining what the function should do in the cases of conflicts
 Cno_extractorThrown when formats::extract does not have an extractor for the provided type
 Cno_serializerThrown when formats::to_json does not have a serializer for the provided type
 Cobject_node_handleA node handle used when a value is kind::object to access elements of the object in potentially destructive manner
 Coptional_adapterAn adapter for optional-like types
 Costream_encoderAn encoder that outputs to an std::ostream
 Costream_pretty_encoder
 Cparse_errorAn error encountered when parsing
 Cparse_indexRepresents the index of a parsed AST
 Citerator
 Cparse_optionsConfiguration for various parsing options
 Ck
 CpathRepresents an exact path in some JSON structure
 Cpath_element
 Cpolymorphic_adapterAn adapter which can create polymorphic types
 Cpolymorphic_adapter_builder
 CreaderA reader instance reads from some form of JSON source (probably a string) and converts it into a JSON ast_node sequence
 Crecursive_merge_rulesThese rules will recursively merge everything they can and coerce all values
 Cserialization_context
 CserializerA serializer holds the method for converting an arbitrary C++ type into a value
 Cserializer_for
 Cthrowing_merge_rulesThese rules throw an exception on all conflicts
 Cvalidation_errorError thrown when an unrepresentable value is encountered in a JSON AST
 CvalueRepresents a single JSON value, which can be any one of a potential kind, each behaving slightly differently
 Cbasic_array_iteratorThe base type for iterating over array values
 Cbasic_object_iteratorThe base iterator type for iterating over object types
 Cobject_insert_return_typeType returned from insert operations when this has kind::object
 Cvalue_compareCompares a value to another using the standard-issue value::compare function
 Cvalue_compare_icaseCompares two values, ignoring the case for any value with kind::string
 CversionRepresents a version used to extract and encode JSON objects from C++ classes
 Cwrapper_adapterAn adapter for "wrapper" types