aboutsummaryrefslogtreecommitdiff
path: root/src/Data/Array/Mixed/Shape.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/Array/Mixed/Shape.hs')
-rw-r--r--src/Data/Array/Mixed/Shape.hs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Data/Array/Mixed/Shape.hs b/src/Data/Array/Mixed/Shape.hs
index 4dd0aa6..77d6a8b 100644
--- a/src/Data/Array/Mixed/Shape.hs
+++ b/src/Data/Array/Mixed/Shape.hs
@@ -156,14 +156,12 @@ listxZip :: ListX sh (Const i) -> ListX sh (Const j) -> ListX sh (Const (i, j))
listxZip ZX ZX = ZX
listxZip (Const i ::% irest) (Const j ::% jrest) =
Const (i, j) ::% listxZip irest jrest
---listxZip _ _ = error "listxZip: impossible pattern needlessly required"
listxZipWith :: (i -> j -> k) -> ListX sh (Const i) -> ListX sh (Const j)
-> ListX sh (Const k)
listxZipWith _ ZX ZX = ZX
listxZipWith f (Const i ::% irest) (Const j ::% jrest) =
Const (f i j) ::% listxZipWith f irest jrest
---listxZipWith _ _ _ = error "listxZipWith: impossible pattern needlessly required"
-- * Mixed indices