We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The readme makes this claim:
To access elements several levels down, the get(key) and array(index) can be used for objects and arrays, respectively:
std::string music_desired = example.array(0).get("hobbies").array(1).get("music");
This is untrue, as json::jobject::get returns a std::string, not a json::jobject.
json::jobject::get
std::string
json::jobject
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The readme makes this claim:
Multi-level Access
To access elements several levels down, the get(key) and array(index) can be used for objects and arrays, respectively:
This is untrue, as
json::jobject::get
returns astd::string
, not ajson::jobject
.The text was updated successfully, but these errors were encountered: