Hacker News new | ask | show | jobs
by jeremyjh 4764 days ago
Elixir does have currying/partial application.

I can say:

plus_one = &1 + 1

Enum.map [1,2,3], plus_one

1 comments

Partial application and currying are not the same thing. (That's not a value judgment, they're just different things.) That's partial application.