[External] Re: should base R have a piping operator ?
Hi Kevin,
On 7 Oct 2019, at 18:42, Kevin Ushey <kevinushey at gmail.com> wrote: My understanding is that the '.' placeholder is used so that the magrittr pipe can be adapted to functions that aren't endomorphic or otherwise easily pipeable. I would argue that: 1. Users could just create their own pipable wrapper functions if so required, or 2. Users could use magrittr to get some of the 'extensions' to the pipe operator (with the noted caveats).
Another advantage of the placeholder is that it represents an obvious binding to inspect while debugging. It would be useful to be able to inspect all intermediate values in a pipeline by stepping with sequences of `n` and `.` commands. Lionel