control-dotdotdot

Haskell operator `g ... f = \x1 .. xn -> g (f x1 .. xn)`.

https://github.com/erisco/control-dotdotdot

Latest on Hackage:0.1.0.1

This package is not currently in any snapshots. If you're interested in using it, we recommend adding it to Stackage Nightly. Doing so will make builds more reliable, and allow stackage.org to host generated Haddocks.

BSD-3-Clause licensed by Eric Brisco
Maintained by [email protected]

Haskell operator `g ... f = x1 .. xn -> g (f x1 .. xn)`. Compose functions such that all arguments are applied. Obviates `(.).(.)` and similar patterns in some cases.