-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrol-dotdotdot.cabal
43 lines (34 loc) · 1.39 KB
/
control-dotdotdot.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
-- 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.1
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: [email protected]
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: v0.1.0.1
library
exposed-modules: Control.DotDotDot
other-extensions: DataKinds
FlexibleContexts
FlexibleInstances
MultiParamTypeClasses
TypeFamilies
UndecidableInstances
build-depends: base >=4.9 && <9223372036854775807
default-language: Haskell2010