diff options
author | Tom Smeding <t.j.smeding@uu.nl> | 2024-04-09 18:35:35 +0200 |
---|---|---|
committer | Tom Smeding <t.j.smeding@uu.nl> | 2024-04-09 18:35:35 +0200 |
commit | 36a89c7a26d73b0583ac765d29dadb1b918007f6 (patch) | |
tree | c497bc390a252a58ac21b14260fb655690cf75b8 /src/Data/Array/Nested.hs | |
parent | ffa91484573a2c2be3f6ae2190c768e7a77e8b5c (diff) |
Transpose functions in the API
Diffstat (limited to 'src/Data/Array/Nested.hs')
-rw-r--r-- | src/Data/Array/Nested.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Data/Array/Nested.hs b/src/Data/Array/Nested.hs index 983a636..aa7c7f9 100644 --- a/src/Data/Array/Nested.hs +++ b/src/Data/Array/Nested.hs @@ -4,6 +4,7 @@ module Data.Array.Nested ( Ranked, IxR(..), rshape, rindex, rindexPartial, rgenerate, rsumOuter1, + rtranspose, -- ** Lifting orthotope operations to 'Ranked' arrays rlift, @@ -12,6 +13,7 @@ module Data.Array.Nested ( IxS(..), KnownShape(..), SShape(..), sshape, sindex, sindexPartial, sgenerate, ssumOuter1, + stranspose, -- ** Lifting orthotope operations to 'Shaped' arrays slift, |