Closed renkun-ken closed 10 years ago
> 1:10 %>>% lapply(function(i) cat(i)) %>>% NULL
>
This directly prevents the lhs from evaluating. Revert the implementation.
One can call directly
> 1:10 %>>% lapply(function(i) cat(i)) %>>% invisible
12345678910
This erases the results and prevents the result from printing.