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
Currently in an environment document, you can mutate maps such as
foo: bar: baz: lala quux: - first - second - third: true
like this:
foo.bar.baz: something which is not "lala" foo.quux.2.third: false
Which is great, but in order to append to collections, it gets awkward:
foo.bar: ~(assoc: - [email protected] - ~:extra - blah foo.quux: ~(conj: - [email protected] - fourth
It would be nice if there were a shortcut, like this:
foo.bar.: extra: blah foo.quux.: fourth
or even:
foo.: bar.: extra: blah quux.: fourth
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently in an environment document, you can mutate maps such as
like this:
Which is great, but in order to append to collections, it gets awkward:
It would be nice if there were a shortcut, like this:
or even:
The text was updated successfully, but these errors were encountered: