monomorphic 0.0.3.0 → 0.0.3.1
raw patch · 3 files changed
+4/−3 lines, 3 files
Files
- Data/Type/Monomorphic.hs +2/−2
- README.md +1/−0
- monomorphic.cabal +1/−1
Data/Type/Monomorphic.hs view
@@ -1,6 +1,6 @@ {-# LANGUAGE DataKinds, ExistentialQuantification, FlexibleContexts, GADTs #-}-{-# LANGUAGE PolyKinds, RankNTypes, TypeFamilies, TypeOperators #-}-{-# LANGUAGE UndecidableInstances #-}+{-# LANGUAGE ImpredicativeTypes, PolyKinds, RankNTypes, TypeFamilies #-}+{-# LANGUAGE TypeOperators, UndecidableInstances #-} module Data.Type.Monomorphic ( Monomorphic (..), Monomorphicable(..) , demote', demoteComposed, monomorphicCompose , withPolymorhic, liftPoly, viaPoly, (:.:)(..)
README.md view
@@ -1,5 +1,6 @@ The `monomorphic` library ==========================+[](https://travis-ci.org/konn/monomorphic) What is this? -------------
monomorphic.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: monomorphic-version: 0.0.3.0+version: 0.0.3.1 synopsis: Library to convert polymorphic datatypes to/from its monomorphic represetation description: This library provides the type-class and functions to convert between polymorphic data-types and its monomorphic representation type, such as length-indexed vectors, singletons for type-level natural numbers, etc. homepage: https://github.com/konn/monomorphic