Hacker News new | ask | show | jobs
by dijkstra_j 605 days ago
Using the pipe operator in Elixir is very nice, even more so for building up complex multi operations and such
1 comments

Exactly. It also massively improves readability by reordering the code to match the order of operations. Also long nested chains of function calls make it so the arguments for each call get spread out, so your eyes have to go back and forth to determine what function receives what.