Closed HenrikBengtsson closed 3 years ago
Currently,
> x <- 1:2 > hpaste(x) [1] "1, 2" > x <- integer(0) > hpaste(x) character(0) > x <- NULL > hpaste(x) character(0)
The proposal is to add support for:
> x <- NULL > hpaste(x, empty = "<NULL>") "<NULL>"
and
> x <- character(0) > hpaste(x, empty = "") ""
Currently,
The proposal is to add support for:
and