Re: [R-pkg-devel] Overriding + operator in a package

2020-03-21 Thread Duncan Murdoch
On 21/03/2020 3:03 p.m., Emanuele Cordano wrote: Dear list, I just released on my Github account the following R package: https://github.com/ecor/stringplus containing an override of '+' arithmetic operator in order to sum two strings as follows: ``` library(stringplus) subject <- "Susan"

[R-pkg-devel] Overriding + operator in a package

2020-03-21 Thread Emanuele Cordano
Dear list, I just released on my Github account the following R package: https://github.com/ecor/stringplus containing an override of '+' arithmetic operator in order to sum two strings as follows: ``` library(stringplus) subject <- "Susan" verb <- "is eating" object <- "an apple"