You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not to come across as harsh, but we are not going to do that.
Pipe.jl is explicit.
As you say, other packages like Lazy.jl do it.
I particularly like Hose.jl which originated as a fork of Pipe.jl but with that feature added.
You can check the big list of alternatives for others. JuliaLang/julia#5571 (comment)
Currently
@pipe a |> f(_, b)
is needed but in other tools like Lazy.jl and R's magrittr which allows the first argument to be the previous one without_
e.g.@pipe a |> f(b)
would be equivalent tof(a,b)
and@pipe a |> f(_, b)
The text was updated successfully, but these errors were encountered: