Powered by Lua's beautiful operator overloading (of %, *, ^), bringing you the elegance of: OCaml, Julia, F#, PHP, Elixir, Elm's true pipeline operators x |> f |> g -- Unlike pipe(x, f, g) (cheap pipe function)1 local arrow = require('luarrow').arrow -- The **true** pipeline operator local _ = 42 % arrow(function(x) return x - 2 end) ^ arrow(function(x) return x * 10 ...