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
Greetings,
Thank you for yaml-rust!
I see in the docs:
assert_eq!(doc["foo"][0].as_str().unwrap(), "list1");
I would like to do something like:
let key = "[foo][0]"; assert_eq!(doc.dynamic_lookup(key).unwrap(), "list1");
Do you know if it is possible with yaml-rust?
Thanks!
The text was updated successfully, but these errors were encountered:
https://github.com/ejrh/yaml-path
Sorry, something went wrong.
No branches or pull requests
Greetings,
Thank you for yaml-rust!
I see in the docs:
assert_eq!(doc["foo"][0].as_str().unwrap(), "list1");
I would like to do something like:
Do you know if it is possible with yaml-rust?
Thanks!
The text was updated successfully, but these errors were encountered: