summaryrefslogtreecommitdiff
path: root/lib/Data/Packed/Vector.hs
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2014-04-23 14:19:34 +0200
committerAlberto Ruiz <aruiz@um.es>2014-04-23 14:19:34 +0200
commit7c5adb83c9cb632c39eb2d844a1496e2a7a23e8b (patch)
treeec80d2d2533fcf1a2c1f1f021bc0669767ec7817 /lib/Data/Packed/Vector.hs
parenteaa21e363a62274b3b457556d8f41b10cc335513 (diff)
join -> vjoin
Diffstat (limited to 'lib/Data/Packed/Vector.hs')
-rw-r--r--lib/Data/Packed/Vector.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Data/Packed/Vector.hs b/lib/Data/Packed/Vector.hs
index dad5d28..a705ce4 100644
--- a/lib/Data/Packed/Vector.hs
+++ b/lib/Data/Packed/Vector.hs
@@ -19,7 +19,7 @@ module Data.Packed.Vector (
19 Vector, 19 Vector,
20 fromList, (|>), toList, buildVector, 20 fromList, (|>), toList, buildVector,
21 dim, (@>), 21 dim, (@>),
22 subVector, takesV, join, 22 subVector, takesV, vjoin,
23 mapVector, mapVectorWithIndex, zipVector, zipVectorWith, unzipVector, unzipVectorWith, 23 mapVector, mapVectorWithIndex, zipVector, zipVectorWith, unzipVector, unzipVectorWith,
24 mapVectorM, mapVectorM_, mapVectorWithIndexM, mapVectorWithIndexM_, 24 mapVectorM, mapVectorM_, mapVectorWithIndexM, mapVectorWithIndexM_,
25 foldLoop, foldVector, foldVectorG, foldVectorWithIndex 25 foldLoop, foldVector, foldVectorG, foldVectorWithIndex
@@ -61,7 +61,7 @@ instance (Binary a, Storable a) => Binary (Vector a) where
61 get = do 61 get = do
62 d <- get 62 d <- get
63 vs <- mapM getVector $ chunks d 63 vs <- mapM getVector $ chunks d
64 return $! join vs 64 return $! vjoin vs
65 65
66#endif 66#endif
67 67