summaryrefslogtreecommitdiff
path: root/apl9.h
diff options
context:
space:
mode:
authorPeter Mikkelsen <petermikkelsen10@gmail.com>2022-01-30 17:05:09 +0000
committerPeter Mikkelsen <petermikkelsen10@gmail.com>2022-01-30 17:05:09 +0000
commit07fdf558676c53e1c2b717e86423985d1054b914 (patch)
tree871e7523f330ba245758f68f0e68e87316500d67 /apl9.h
parent88d2b78099b2b4df6976472c6b36703de8f79249 (diff)
Implement inteval index ⍸. It shares almost 100% of the code with index of ⍳
Diffstat (limited to 'apl9.h')
-rw-r--r--apl9.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/apl9.h b/apl9.h
index 90cdda0..cad5ae4 100644
--- a/apl9.h
+++ b/apl9.h
@@ -352,6 +352,7 @@ Array *fnPick(Array *, Array *);
Array *fnPartition(Array *, Array *);
Array *fnIndex(Array *, Array *);
Array *fnIndexOf(Array *, Array *);
+Array *fnIntervalIndex(Array *, Array *);
Array *fnMembership(Array *, Array *);
Array *fnUnion(Array *, Array *);
Array *fnIntersection(Array *, Array *);