diff options
author | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2022-01-29 17:23:44 +0000 |
---|---|---|
committer | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2022-01-29 17:23:44 +0000 |
commit | 1ea2f6f8af7ef012005d46fd13acd082628f7295 (patch) | |
tree | ecd458e81035f6a1f2193d0efe4daf66fe6cfe55 /apl9.h | |
parent | a9cb9bb4ccc58a24ce2ab31193f179901f56cf5a (diff) |
Implement expand last (\) and expand first (⍀)
Diffstat (limited to 'apl9.h')
-rw-r--r-- | apl9.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -375,7 +375,9 @@ Array *opSelfReference2(Datum *, Datum *, Array *, Array *); /* Dyadic functions from hybrids.c */ Array *fnReplicateLast(Array *, Array *); +Array *fnExpandLast(Array *, Array *); Array *fnReplicateFirst(Array *, Array *); +Array *fnExpandFirst(Array *, Array *); /* Monadic operators from hybrids.c */ Array *opReduceLast(Datum *, Array *, Array *); |