This function is intended to allow the user to use NSE within their dot calls for the express purpose of renaming functions. This function is intended for internal use to be passed to other MSF packages.
dots_to_charlist(parent = 1L)a list of character vectors
x <- function(...) {
dots_to_charlist()
}
x(a = 1, b = TRUE, c = three)
#> $a
#> [1] "1"
#>
#> $b
#> [1] "TRUE"
#>
#> $c
#> [1] "three"
#>