diff options
author | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2022-01-24 22:02:25 +0000 |
---|---|---|
committer | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2022-01-24 22:02:25 +0000 |
commit | e77ed10bf640bf6c3cb6ce10943e0be6e82f5250 (patch) | |
tree | 8f3f1f071dd40fb1ae75c4d244d926bec61583c9 /apl9.h | |
parent | 5a5136ef9f981a603ca2e933e47cfd3a178be7cc (diff) |
Implement a limited form of ⍣
Diffstat (limited to 'apl9.h')
-rw-r--r-- | apl9.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -329,6 +329,7 @@ Array *opSwitch(Datum *, Array *, Array *); Array *opSelfReference1(Datum *, Array *, Array *); /* Dyadic operators from operators.c */ +Array *opPower(Datum *, Datum *, Array *, Array *); Array *opBind(Datum *, Datum *, Array *, Array *); Array *opAtop(Datum *, Datum *, Array *, Array *); Array *opOver(Datum *, Datum *, Array *, Array *); |