Hacker News new | ask | show | jobs
by aetherspawn 3078 days ago
Haskell has had the dot (.) operator which does the same thing for probably longer, but I have no reference sorry. Haskell is >30 years old.
2 comments

Dot has the arguments swapped.

  f |> g = g . f
The $-operator is Haskell's equivalent to |>