open-typerep: Open type representations and dynamic types
This package uses Data Types à la Carte to provide open type representations and dynamic types/coercions for open type universes.
Example 1 (dynamic types):
type MyUniverse = IntType :+: BoolType hlist :: [Dynamic MyUniverse] hlist = [toDyn True, toDyn (1 :: Int)]
*Main> hlist [True,1]
Note that if we were using Data.Dynamic, it would just print
[<<Bool>>,<<Int>>]
Example 2 (dynamically typed addition):
addDyn :: (TypeEq ts ts, PWitness Num ts ts) => Dynamic ts -> Dynamic ts -> Maybe (Dynamic ts) addDyn (Dyn ta a) (Dyn tb b) = do Dict <- typeEq ta tb Dict <- pwit pNum ta return (Dyn ta (a+b))
Data.Dynamic could only do this monomorphically, for one Num
type at a
time.
Modules
[Index]
Downloads
- open-typerep-0.6.1.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
Versions [RSS] | 0.1, 0.2, 0.3.1, 0.3.2, 0.3.3, 0.4, 0.5, 0.6, 0.6.1 |
---|---|
Dependencies | base (>=4 && <5), base-orphans, constraints (>=0.3), mtl (>=2.2.1), syntactic (>=3.1), tagged (>=0.4), template-haskell [details] |
License | BSD-3-Clause |
Copyright | Copyright (c) 2014-2016, Emil Axelsson |
Author | Emil Axelsson |
Maintainer | emax@chalmers.se |
Category | Dependent Types |
Home page | https://github.com/emilaxelsson/open-typerep |
Bug tracker | https://github.com/emilaxelsson/open-typerep/issues |
Source repo | head: git clone https://github.com/emilaxelsson/open-typerep |
Uploaded | by EmilAxelsson at 2016-05-27T14:19:12Z |
Distributions | |
Reverse Dependencies | 2 direct, 3 indirect [details] |
Downloads | 5703 total (53 in the last 30 days) |
Rating | (no votes yet) [estimated by Bayesian average] |
Your Rating | |
Status | Docs available [build log] Last success reported on 2016-05-27 [all 1 reports] |