forked from timjb/dtypes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
191 additions
and
191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# ftypes [![Build Status][travis-image]][travis-url] | ||
# dtypes [![Build Status][travis-image]][travis-url] | ||
|
||
[travis-image]: https://travis-ci.org/timjb/ftypes.svg?branch=master | ||
[travis-url]: https://travis-ci.org/timjb/ftypes | ||
[travis-image]: https://travis-ci.org/timjb/dtypes.svg?branch=master | ||
[travis-url]: https://travis-ci.org/timjb/dtypes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
10 changes: 5 additions & 5 deletions
10
...icative/ftypes-optparse-applicative.cabal → ...icative/dtypes-optparse-applicative.cabal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
name: ftypes-optparse-applicative | ||
name: dtypes-optparse-applicative | ||
version: 0.1.0.0 | ||
synopsis: example for using optparse-applicative together with ftypes | ||
homepage: https://github.com/timjb/ftypes/tree/master/examples/ftypes-optparse-applicative | ||
synopsis: example for using optparse-applicative together with dtypes | ||
homepage: https://github.com/timjb/dtypes/tree/master/examples/dtypes-optparse-applicative | ||
license: MIT | ||
license-file: LICENSE | ||
author: Tim Baumann | ||
maintainer: [email protected] | ||
build-type: Simple | ||
cabal-version: >= 1.10 | ||
|
||
executable ftypes-optparse-applicative | ||
executable dtypes-optparse-applicative | ||
main-is: Main.hs | ||
build-depends: | ||
base, | ||
optparse-applicative, | ||
ftypes | ||
dtypes | ||
hs-source-dirs: . | ||
default-language: Haskell2010 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module DTypes | ||
( module X | ||
) where | ||
|
||
import DTypes.Classes as X | ||
import DTypes.Combinators as X | ||
import DTypes.TH as X |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module DTypes.Classes | ||
( module X | ||
) where | ||
|
||
import DTypes.Classes.DFunctor as X | ||
import DTypes.Classes.DApplicative as X | ||
import DTypes.Classes.DTraversable as X | ||
import DTypes.Classes.DChoice as X | ||
import DTypes.Classes.HasDType as X |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.