To be consistent with https://github.com/tidyverse/principles/issues/24 And it would also make `tibble(x = 1, y = NULL)` return the same as: ```R df <- tibble(x = 1) df$y <- NULL ```
To be consistent with tidyverse/design#24
And it would also make
tibble(x = 1, y = NULL)return the same as: