fn builtin_paste0(
args: &[RValue],
named: &[(String, RValue)],
) -> Result<RValue, RError>Expand description
Concatenate strings with no separator.
Equivalent to paste(..., sep = "").
@param … objects to paste together @param collapse optional string to join result elements @return character vector