aboutsummaryrefslogtreecommitdiff
path: root/src/Data
diff options
context:
space:
mode:
authorTom Smeding <t.j.smeding@uu.nl>2024-06-10 13:27:54 +0200
committerTom Smeding <t.j.smeding@uu.nl>2024-06-10 13:28:53 +0200
commitc211316a4ab43cf34d6567c6919a3922d5840ae0 (patch)
tree635ef6937b940145127cb740285c86a1e0d1642e /src/Data
parent596bce9b869cafc06d9b1567c3a3ed282f7441ba (diff)
Add {max,min}IndexPrim to Nested export
Diffstat (limited to 'src/Data')
-rw-r--r--src/Data/Array/Nested.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Data/Array/Nested.hs b/src/Data/Array/Nested.hs
index 3e4e1a0..4a23a39 100644
--- a/src/Data/Array/Nested.hs
+++ b/src/Data/Array/Nested.hs
@@ -11,6 +11,7 @@ module Data.Array.Nested (
rrerank,
rreplicate, rreplicateScal, rfromListOuter, rfromList1, rfromList1Prim, rtoListOuter, rtoList1,
rslice, rrev1, rreshape, riota,
+ rminIndexPrim, rmaxIndexPrim,
rnest, runNest,
-- ** Lifting orthotope operations to 'Ranked' arrays
rlift, rlift2,
@@ -30,6 +31,7 @@ module Data.Array.Nested (
srerank,
sreplicate, sreplicateScal, sfromListOuter, sfromList1, sfromList1Prim, stoListOuter, stoList1,
sslice, srev1, sreshape, siota,
+ sminIndexPrim, smaxIndexPrim,
snest, sunNest,
-- ** Lifting orthotope operations to 'Shaped' arrays
slift, slift2,
@@ -46,6 +48,7 @@ module Data.Array.Nested (
mrerank,
mreplicate, mreplicateScal, mfromListOuter, mfromList1, mfromList1Prim, mtoListOuter, mtoList1,
mslice, mrev1, mreshape, miota,
+ mminIndexPrim, mmaxIndexPrim,
mnest, munNest,
-- ** Lifting orthotope operations to 'Mixed' arrays
mlift, mlift2,