Re: [Rd] string concatenation operator (revisited)

2021-12-05 Thread Radford Neal
> The TL;DR version is base R support for a `+.character` method. This > would essentially provide a shortcut to `paste0`... In pqR (see pqR-project.org), I have implemented ! and !! as binary string concatenation operators, equivalent to paste0 and paste, respectively. For instance, >

Re: [R-pkg-devel] CRAN no longer checking for solaris?

2021-12-05 Thread Avraham Adler
Would this mean we could start using little endian bit strings, as I think only the Solaris platform was big endian (or was it the other way around)? Avi On Sun, Dec 5, 2021 at 8:56 PM Dirk Eddelbuettel wrote: > > On 5 December 2021 at 17:23, Travers Ching wrote: > | I see that there doesn't

Re: [R-pkg-devel] CRAN no longer checking for solaris?

2021-12-05 Thread Dirk Eddelbuettel
On 5 December 2021 at 17:23, Travers Ching wrote: | I see that there doesn't exist a Solaris flavor on any CRAN check page. | However, I'm certain that Solaris was being checked up until very recently. | | Is this just temporary? | | Is there any information for the future of Solaris on CRAN?

[R-pkg-devel] CRAN no longer checking for solaris?

2021-12-05 Thread Travers Ching
I see that there doesn't exist a Solaris flavor on any CRAN check page. However, I'm certain that Solaris was being checked up until very recently. Is this just temporary? Is there any information for the future of Solaris on CRAN? [[alternative HTML version deleted]]

Re: [Rd] string concatenation operator (revisited)

2021-12-05 Thread Duncan Murdoch
On 05/12/2021 7:22 a.m., Ivan Krylov wrote: On Sat, 4 Dec 2021 21:26:05 -0500 Avi Gross via R-devel wrote: In many languages, like PERL, this results in implicated conversion to make "text1" the result. FWIW, Perl5 has a separate string concatenation operator (".") in order to avoid

Re: [R-pkg-devel] CRAN submission error when running tests in testthat

2021-12-05 Thread Ben Engbers
Hi, I submitted the most recent version of my package to CRAN and to Macbuilder reported no problems. Best regards, Ben Op 25-11-2021 om 11:49 schreef Ivan Krylov: On Wed, 24 Nov 2021 16:37:44 + (UTC) Nathan Green via R-package-devel

Re: [Rd] string concatenation operator (revisited)

2021-12-05 Thread GILLIBERT, Andre
Ivan Krylov wrote: > FWIW, Perl5 has a separate string concatenation operator (".") in order > to avoid potential confusion with addition. So do Lua (".."), SQL > ("||", only some of the dialects) and Raku ("~", former Perl6). Indeed, using the same operator '+' for addition and string

Re: [Rd] string concatenation operator (revisited)

2021-12-05 Thread Ivan Krylov
On Sat, 4 Dec 2021 21:26:05 -0500 Avi Gross via R-devel wrote: > In many languages, like PERL, this results in implicated conversion > to make "text1" the result. FWIW, Perl5 has a separate string concatenation operator (".") in order to avoid potential confusion with addition. So do Lua