template<template< typename U, typename V, typename... Args > class ObjectType = std::map, template< typename U, typename... Args > class ArrayType = std::vector, class StringType = std::string, class BooleanType = bool, class NumberIntegerType = std::int64_t, class NumberUnsignedType = std::uint64_t, class NumberFloatType = double, template< typename U > class AllocatorType = std::allocator, template< typename T, typename SFINAE=
void > class JSONSerializer = adl_serializer>
class nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >::parser
syntax analysis
This class implements a recursive decent parser.
Definition at line 11353 of file json.hpp.
|
| | parser (const char *buff, const parser_callback_t cb=nullptr) |
| | a parser reading from a string literal More...
|
| |
| template<class IteratorType , typename std::enable_if< std::is_same< typename std::iterator_traits< IteratorType >::iterator_category, std::random_access_iterator_tag >::value, int >::type = 0> |
| | parser (IteratorType first, IteratorType last, const parser_callback_t cb=nullptr) |
| | a parser reading from an iterator range with contiguous storage More...
|
| |
| | parser (std::istream &is, const parser_callback_t cb=nullptr) |
| | a parser reading from an input stream More...
|
| |
| basic_json | parse () |
| | public parser interface More...
|
| |