nlohmann::basic_json::parse

deserialize from a pair of character iterators

Synopsis

Declared in <nlohmann/json.hpp>
template<typename IteratorType>
[[__warn_unused_result__]]
static
basic_json
parse(
    IteratorType first,
    IteratorType last,
    parser_callback_t cb = nullptr,
    bool const allow_exceptions = true,
    bool const ignore_comments = false,
    bool const ignore_trailing_commas = false);


Return Value

a class to store JSON values

Parameters

Name Description
cb per-element parser callback type

Created with MrDocs