diff options
author | Alberto Ruiz <aruiz@um.es> | 2014-04-24 20:50:10 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2014-04-24 20:50:10 +0200 |
commit | cd3daf7e12fa2a8c775a1d6516049bbc7e44da32 (patch) | |
tree | ee2969b42838c13a282a4082dbb0f8c8c53af2a5 /lib/Data | |
parent | c2b3835a9a43d822d6134ef51a9ec9627a9e95c3 (diff) |
deprecate vjoin, dot and (<.>). Move (⋅) to Container
Diffstat (limited to 'lib/Data')
-rw-r--r-- | lib/Data/Packed/Vector.hs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/Data/Packed/Vector.hs b/lib/Data/Packed/Vector.hs index a705ce4..f12031f 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, vjoin, | 22 | subVector, takesV, vjoin, join, |
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 |
@@ -88,3 +88,8 @@ unzipVector :: (Storable a, Storable b, Storable (a,b)) => Vector (a,b) -> (Vect | |||
88 | unzipVector = unzipVectorWith id | 88 | unzipVector = unzipVectorWith id |
89 | 89 | ||
90 | ------------------------------------------------------------------- | 90 | ------------------------------------------------------------------- |
91 | |||
92 | {-# DEPRECATED join "use vjoin or Data.Vector.concat" #-} | ||
93 | join :: Storable t => [Vector t] -> Vector t | ||
94 | join = vjoin | ||
95 | |||