Search notes:

R function: noquote

#
#   S.a. ../examples/printing_characters.R
#

nq <- noquote("foo bar baz")
nq
# [1] foo bar baz

class(nq)
# [1] "noquote"

is.character(nq)
# [1] TRUE
Github repository about-r, path: /functions/noquote.R

See also

Index to (some) R functions

Index