summaryrefslogtreecommitdiff
path: root/lib/Numeric/ContainerBoot.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Numeric/ContainerBoot.hs')
-rw-r--r--lib/Numeric/ContainerBoot.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Numeric/ContainerBoot.hs b/lib/Numeric/ContainerBoot.hs
index a605545..f1ed7c5 100644
--- a/lib/Numeric/ContainerBoot.hs
+++ b/lib/Numeric/ContainerBoot.hs
@@ -59,12 +59,12 @@ import System.IO.Unsafe
59 59
60------------------------------------------------------------------- 60-------------------------------------------------------------------
61 61
62type family IndexOf c 62type family IndexOf (c :: * -> *)
63 63
64type instance IndexOf Vector = Int 64type instance IndexOf Vector = Int
65type instance IndexOf Matrix = (Int,Int) 65type instance IndexOf Matrix = (Int,Int)
66 66
67type family ArgOf c a 67type family ArgOf (c :: * -> *) a
68 68
69type instance ArgOf Vector a = a -> a 69type instance ArgOf Vector a = a -> a
70type instance ArgOf Matrix a = a -> a -> a 70type instance ArgOf Matrix a = a -> a -> a