Luarrow – True pipeline operators and elegant Haskell-style function compositio
by todsacerdoti on 12/3/2025, 4:04:32 AM
https://github.com/aiya000/luarrow.lua
Comments
by: orthoxerox
I love it when people push syntax to its limits. The only thing I do not like is how `^` points in the wrong direction when you stack it vertically, like in the example:<p><pre><code> local _ = 5 % arrow(function(x) return -x end) ^ arrow(function(x) return x + 10 end) ^ arrow(function(x) return x * x end) ^ arrow(print) -- 25</code></pre>
12/9/2025, 7:14:49 AM