Re: [Rd] base R pipe documentation

2021-05-18 Thread Bill Dunlap
It would be nice to have "|>" listed in the precedence table in help(Syntax). I think it has the same precedence as "%any%" and both are left-associative. > quote( a |> f1() %any% f2()) f1(a) %any% f2() > quote( a %any% f1() |> f2()) f2(a %any% f1()) help(`|>`) does mention magrittr's pip

Re: [Rd] base R pipe documentation

2021-05-17 Thread peter dalgaard
OK, zapped the \note for 4-1-branch (for now). This close to release, changes have to be very small and safe to be allowed in, so anything more than that will have to wait for a later version. - Peter > On 17 May 2021, at 19:20 , Ben Bolker wrote: > > As of right now, as far as I can tell, t

[Rd] base R pipe documentation

2021-05-17 Thread Ben Bolker
As of right now, as far as I can tell, the documentation for the new native |> pipe still says that it's experimental. https://github.com/wch/r-source/blob/trunk/src/library/base/man/pipeOp.Rd#L45 *Pipe support is experimental and may change prior to release.* Also still in the 4-1 bran