1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Name: newtype
Version: 0.2
Synopsis: A typeclass and set of functions for working with newtypes.
Description: Per Conor McBride, the Newtype typeclass represents the packing and unpacking of a newtype, and allows you to operatate under that newtype with functions such as ala.
License: BSD3
License-file: LICENSE
Author: Darius Jahandarie, Conor McBride
Maintainer: Darius Jahandarie <djahandarie at gmail>
-- Copyright:
Category: Control
Build-type: Simple
-- Extra-source-files:
Cabal-version: >=1.2
Library
Exposed-modules: Control.Newtype
Build-depends: base >= 3.0 && < 6
-- Other-modules:
-- Build-tools:
Ghc-options: -Wall
|