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 BinaryType = std::vector<std::uint8_t>>
template<typename InputAdapterType >
static ::nlohmann::detail::parser< basic_json, InputAdapterType > nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer, BinaryType >::parser |
( |
InputAdapterType |
adapter, |
|
|
detail::parser_callback_t< basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer, BinaryType > > |
cb = nullptr , |
|
|
const bool |
allow_exceptions = true , |
|
|
const bool |
ignore_comments = false |
|
) |
| |
|
inlineprivate |
Definition at line 17888 of file json.hpp.
17894 {
17895 return ::nlohmann::detail::parser<basic_json, InputAdapterType>(std::move(adapter),
17896 std::move(cb), allow_exceptions, ignore_comments);
17897 }