diff options
author | Vivian McPhail <haskell.vivian.mcphail@gmail.com> | 2010-07-12 21:07:42 +0000 |
---|---|---|
committer | Vivian McPhail <haskell.vivian.mcphail@gmail.com> | 2010-07-12 21:07:42 +0000 |
commit | 007960d648485d5c161cd366d16282bc29fac68b (patch) | |
tree | 2ab7920ad71a0c29dd1f71c4b69266c85580a1f5 /lib/Data/Packed/Vector.hs | |
parent | ebfbc2f82813362e4840d134c57e1c9ce9518c36 (diff) |
improve unzipVectorWith arguments
Diffstat (limited to 'lib/Data/Packed/Vector.hs')
-rw-r--r-- | lib/Data/Packed/Vector.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Data/Packed/Vector.hs b/lib/Data/Packed/Vector.hs index 760f724..40dd6b5 100644 --- a/lib/Data/Packed/Vector.hs +++ b/lib/Data/Packed/Vector.hs | |||
@@ -152,6 +152,6 @@ vecdisp f v | |||
152 | 152 | ||
153 | -- | unzip for Vectors | 153 | -- | unzip for Vectors |
154 | unzipVector :: (Storable a, Storable b, Storable (a,b)) => Vector (a,b) -> (Vector a,Vector b) | 154 | unzipVector :: (Storable a, Storable b, Storable (a,b)) => Vector (a,b) -> (Vector a,Vector b) |
155 | unzipVector = unzipVectorWith id id | 155 | unzipVector = unzipVectorWith id |
156 | 156 | ||
157 | 157 | ||