R/string_interpolation.R
grapes-s-greater-than-grapes.Rd
String interpolation using bquote
-stype .() notation. Pure R, no C/C++ code called.
envir %s>% str
environemnt to look for values
charater string to be substituted into
modified strings
See also https://CRAN.R-project.org/package=R.utils, https://CRAN.R-project.org/package=rprintf, and https://CRAN.R-project.org/package=glue.
list(x = 7) %s>% "x is .(x)"
#> [1] "x is 7"