Though not as frequently as piping first argument it's often needed to pipe the last argument. Would you mind adding the `%>>%` operator? ```R x %>>% append(y) # is equivalent to append(y, x) ``` `>>` because in clojure these operators are `->` and `->>` respectively. Racket uses [f> and l>](https://docs.racket-lang.org/heresy/pipes.html).