diff options
author | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2022-01-30 17:05:09 +0000 |
---|---|---|
committer | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2022-01-30 17:05:09 +0000 |
commit | 07fdf558676c53e1c2b717e86423985d1054b914 (patch) | |
tree | 871e7523f330ba245758f68f0e68e87316500d67 /apl9.h | |
parent | 88d2b78099b2b4df6976472c6b36703de8f79249 (diff) |
Implement inteval index ⍸. It shares almost 100% of the code with index of ⍳
Diffstat (limited to 'apl9.h')
-rw-r--r-- | apl9.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 *); |