#include "simdjson/error.h" namespace simdjson { namespace SIMDJSON_IMPLEMENTATION { namespace ondemand { /** * A JSON field (key/value pair) in an object. * * Returned from object iteration. * * Extends from std::pair so you can use C++ algorithms that rely on pairs. */ class field : public std::pair { public: /** * Create a new invalid field. * * Exists so you can declare a variable and later assign to it before use. */ simdjson_really_inline field() noexcept; /** * Get the key as a string_view (for higher speed, consider raw_key). * We deliberately use a more cumbersome name (unescaped_key) to force users * to think twice about using it. * * This consumes the key: once you have called unescaped_key(), you cannot * call it again nor can you call key(). */ simdjson_really_inline simdjson_warn_unused simdjson_result unescaped_key() noexcept; /** * Get the key as a raw_json_string. Can be used for direct comparison with * an unescaped C string: e.g., key() == "test". */ simdjson_really_inline raw_json_string key() const noexcept; /** * Get the field value. */ simdjson_really_inline ondemand::value &value() & noexcept; /** * @overload ondemand::value &ondemand::value() & noexcept */ simdjson_really_inline ondemand::value value() && noexcept; protected: simdjson_really_inline field(raw_json_string key, ondemand::value &&value) noexcept; static simdjson_really_inline simdjson_result start(value_iterator &parent_iter) noexcept; static simdjson_really_inline simdjson_result start(const value_iterator &parent_iter, raw_json_string key) noexcept; friend struct simdjson_result; friend class object_iterator; }; } // namespace ondemand } // namespace SIMDJSON_IMPLEMENTATION } // namespace simdjson namespace simdjson { template<> struct simdjson_result : public SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base { public: simdjson_really_inline simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::field &&value) noexcept; ///< @private simdjson_really_inline simdjson_result(error_code error) noexcept; ///< @private simdjson_really_inline simdjson_result() noexcept = default; simdjson_really_inline simdjson_result unescaped_key() noexcept; simdjson_really_inline simdjson_result key() noexcept; simdjson_really_inline simdjson_result value() noexcept; }; } // namespace simdjson