catfn {toscutil} | R Documentation |
Format and Print
Description
Same as cat2(sprintf(fmt, ...))
Warning: this function is deprecated and should no longer be used. The function is guaranteed to be available as part of the package until the end of 2023 but might removed at any time after 31.12.2023.
Usage
catfn(
fmt,
...,
end = "\n",
file = "",
sep = " ",
fill = FALSE,
labels = NULL,
append = FALSE
)
Arguments
fmt |
passed on to |
... |
passed on to |
end |
passed on to |
file |
passed on to |
sep |
passed on to |
fill |
passed on to |
labels |
passed on to |
append |
passed on to |
Value
No return value, called for side effects
Examples
catfn("A%dB%sC", 2, "asdf") # prints "A2BasdfC\n"
[Package toscutil version 2.8.0 Index]