summaryrefslogtreecommitdiff
path: root/apl9.h
diff options
context:
space:
mode:
authorPeter Mikkelsen <petermikkelsen10@gmail.com>2022-01-29 17:23:44 +0000
committerPeter Mikkelsen <petermikkelsen10@gmail.com>2022-01-29 17:23:44 +0000
commit1ea2f6f8af7ef012005d46fd13acd082628f7295 (patch)
treeecd458e81035f6a1f2193d0efe4daf66fe6cfe55 /apl9.h
parenta9cb9bb4ccc58a24ce2ab31193f179901f56cf5a (diff)
Implement expand last (\) and expand first (⍀)
Diffstat (limited to 'apl9.h')
-rw-r--r--apl9.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/apl9.h b/apl9.h
index 00075fd..83cee4a 100644
--- a/apl9.h
+++ b/apl9.h
@@ -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 *);