Popularity
1.2
Declining
Activity
0.0
Stable
1
2
0

Monthly Downloads: 13
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Control    
Latest version: v0.1.0.0

control-dotdotdot alternatives and similar packages

Based on the "Control" category.
Alternatively, view control-dotdotdot alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of control-dotdotdot or a related project?

Add another 'Control' Package

README

Control.DotDotDot

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.

Examples

Add four numbers

> ((+) ... (+) ... (+)) (1 :: Int) 2 3 4
10