diff options
author | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2022-01-21 22:37:18 +0000 |
---|---|---|
committer | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2022-01-21 22:37:18 +0000 |
commit | 12e1d1fe6464964b2bee1b83b8524445fc2bbe2c (patch) | |
tree | ee90f01c3f218a096dcb3b961f4050d2c74246e3 /apl9.h | |
parent | 02aa544f14d0b544663face5107ceba197ba5aed (diff) |
Implement scans ⍀ and \
Diffstat (limited to 'apl9.h')
-rw-r--r-- | apl9.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -274,7 +274,9 @@ Array *opOver(Datum *, Datum *, Array *, Array *); /* Monadic operators from hybrids.c */ Array *opReduceLast(Datum *, Array *, Array *); +Array *opScanLast(Datum *, Array *, Array *); Array *opReduceFirst(Datum *, Array *, Array *); +Array *opScanFirst(Datum *, Array *, Array *); /* Global variables */ extern int traceeval; /* eval.c */ |