Y
Hacker News
new
|
ask
|
show
|
jobs
by
projektfu
297 days ago
f . g is still doing g first, then f, right? Haskell has pipelines in the Flow library.
https://hackage-content.haskell.org/package/flow-2.0.0.9/doc...
2 comments
valcron1000
297 days ago
No need to import a third party library: you can use `Data.Function ((&))` for this:
arg & f1 & f2 & f3
link
dismalaf
297 days ago
Ooops my bad. Been too long.
link