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
Given that zap() is there it doesn't seem reasonable to allow NULLs to remove elements from the list:
> list_modify(list(a = 1, b = 3), b = NULL) $a [1] 1 > list_modify(list(a = 1, b = 3), b = zap()) $a [1] 1
It doesn't seem to be a way to insert NULS into a list with list modify currently.
The text was updated successfully, but these errors were encountered:
Standardise list_modify()
94655da
* `NULL` now sets value * Don't recurse into non-lists Fixes #810
Standardise list_modify() (#918)
c958c72
rlang::zap()
NULL
Successfully merging a pull request may close this issue.
Given that zap() is there it doesn't seem reasonable to allow NULLs to remove elements from the list:
It doesn't seem to be a way to insert NULS into a list with list modify currently.
The text was updated successfully, but these errors were encountered: