You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
three nested list with NULL in code gives two nested lists in data.
one and two nested lists with NULL in code gives one list in data.
this is a weird edge case, that probably nobody will ever use, but it may be surprising to some users that list(list(NULL)) and list(NULL) give the same result, I would have expected that list(list(NULL)) results in two nested lists in the data, but to get that you actually have to use three lists in the code.
for reference, before #6167 we have similar behavior:
so actually I'm not sure if we should even do anything about this... what do you think @MichaelChirico@joshhwuu ?
feel free to close if you think it is too useless / obscure / annoying.... haha.
The text was updated successfully, but these errors were encountered:
since #6167 we have
interpretation:
this is a weird edge case, that probably nobody will ever use, but it may be surprising to some users that
list(list(NULL))
andlist(NULL)
give the same result, I would have expected thatlist(list(NULL))
results in two nested lists in the data, but to get that you actually have to use three lists in the code.for reference, before #6167 we have similar behavior:
summary table
so actually I'm not sure if we should even do anything about this... what do you think @MichaelChirico @joshhwuu ?
feel free to close if you think it is too useless / obscure / annoying.... haha.
The text was updated successfully, but these errors were encountered: