Description Usage Arguments Details Value Examples
A binary operator for joining (concatenating) two character vectors, with a typical R look-and-feel.
1 | e1 %+% e2
|
e1 |
character vector |
e2 |
character vector |
Vectorized over e1
and e2
.
This operator works like a call to
stri_join(e1, e2, sep="")
(but is slightly
faster). However, note that joining 3 vectors, e.g.
e1 %+% e2 %+% e3
is slower than
stri_join(e1, e2, e3, sep="")
, because it
creates a new (temporary) result vector each time the
operator is applied.
Returns a character vector.
1 2 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.