R/misc.R
NULL_to_charNA.Rd
This is useful for missing list elements (which returns NULL), but when the missing element in refClass should be NA_character_ (and NULL would return an error)
NULL_to_charNA(char_or_NULL)
A string or NULL
NULL_to_charNA(NA) ## NA
#> [1] NA
NULL_to_charNA(NULL) ## NA_character_
#> [1] NA
NULL_to_charNA("hi") ## "hi"
#> [1] "hi"