diff options
author | Alberto Ruiz <aruiz@um.es> | 2015-05-21 20:47:59 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2015-05-21 20:47:59 +0200 |
commit | 46178222d272a85220bc86b221aa3166edd5bd4a (patch) | |
tree | fbdbb92ef35930cf42913b0c5192ff53f2383f29 /packages/base/src/Data/Packed/Internal/Signatures.hs | |
parent | 7d439ac1d5f49ead00f44c5c1eef5747623d4823 (diff) |
CInt elements, wip
Diffstat (limited to 'packages/base/src/Data/Packed/Internal/Signatures.hs')
-rw-r--r-- | packages/base/src/Data/Packed/Internal/Signatures.hs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/base/src/Data/Packed/Internal/Signatures.hs b/packages/base/src/Data/Packed/Internal/Signatures.hs index acc3070..37dac16 100644 --- a/packages/base/src/Data/Packed/Internal/Signatures.hs +++ b/packages/base/src/Data/Packed/Internal/Signatures.hs | |||
@@ -1,6 +1,6 @@ | |||
1 | -- | | 1 | -- | |
2 | -- Module : Data.Packed.Internal.Signatures | 2 | -- Module : Data.Packed.Internal.Signatures |
3 | -- Copyright : (c) Alberto Ruiz 2009 | 3 | -- Copyright : (c) Alberto Ruiz 2009-15 |
4 | -- License : BSD3 | 4 | -- License : BSD3 |
5 | -- Maintainer : Alberto Ruiz | 5 | -- Maintainer : Alberto Ruiz |
6 | -- Stability : provisional | 6 | -- Stability : provisional |
@@ -68,3 +68,8 @@ type TCVM = CInt -> PC -> TM -- | |||
68 | type TMCVM = CInt -> CInt -> PD -> TCVM -- | 68 | type TMCVM = CInt -> CInt -> PD -> TCVM -- |
69 | type TMMCVM = CInt -> CInt -> PD -> TMCVM -- | 69 | type TMMCVM = CInt -> CInt -> PD -> TMCVM -- |
70 | 70 | ||
71 | type CM b r = CInt -> CInt -> Ptr b -> r | ||
72 | type CV b r = CInt -> Ptr b -> r | ||
73 | |||
74 | type CIdxs r = CV CInt r | ||
75 | |||