tidyr::replace_na(list(character()), replace = "foo")
#> [[1]]
#> [1] "foo"
Created on 2021-10-18 by the reprex package (v2.0.1)
Due to is_complete()'s implementation. It should just replace NULLs
Not sure why replace_na() is using is_complete()? Should not be using "incompleteness" as a replacement condition, should probably just be using "missingness" (i.e. through vec_equal_na())
Created on 2021-10-18 by the reprex package (v2.0.1)
Due to
is_complete()'s implementation. It should just replaceNULLsNot sure why
replace_na()is usingis_complete()? Should not be using "incompleteness" as a replacement condition, should probably just be using "missingness" (i.e. throughvec_equal_na())