We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Though not as frequently as piping first argument it's often needed to pipe the last argument.
Would you mind adding the %>>% operator?
%>>%
x %>>% append(y) # is equivalent to append(y, x)
>> because in clojure these operators are -> and ->> respectively. Racket uses f> and l>.
>>
->
->>