-- Initial control-dotdotdot.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: control-dotdotdot
version: 0.1.0.0
synopsis: Haskell operator
`g ... f = \x1 .. xn -> g (f x1 .. xn)`.
description: 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.
homepage: https://github.com/erisco/control-dotdotdot
license: BSD3
license-file: LICENSE
author: Eric Brisco
maintainer: eric.brisco@gmail.com
category: Control
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
source-repository this
type: git
location: http://github.com/erisco/control-dotdotdot.git
tag: 0.1.0.0
library
exposed-modules: Control.DotDotDot
other-extensions: DataKinds
FlexibleContexts
FlexibleInstances
MultiParamTypeClasses
TypeFamilies
UndecidableInstances
build-depends: base >=4.9 && <4.10
default-language: Haskell2010