Skip to main content

builtin_paste0

Function builtin_paste0 

Source
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