Hacker Times
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
vizzier
on Dec 5, 2020
|
parent
|
context
|
favorite
| on:
R adds native pipe and lambda syntax
And just in brief as to what the pipe generally does without the syntax available. If you have functions x and y which take 1 argument. Where |> is the piping syntax
y(1) |> x would be equivalent to x(y(1)) in python.
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
y(1) |> x would be equivalent to x(y(1)) in python.