summaryrefslogtreecommitdiff
path: root/apl9.h
diff options
context:
space:
mode:
authorPeter Mikkelsen <petermikkelsen10@gmail.com>2022-01-28 21:49:14 +0000
committerPeter Mikkelsen <petermikkelsen10@gmail.com>2022-01-28 21:49:14 +0000
commitc5d0ef8e53608da468f89837a12ab10ecc401978 (patch)
treead78251f2116ac884b4ccf474d01998ac0cad6df /apl9.h
parent8ab9401c22502520bf3100f864a306a451e5d44a (diff)
Implement rotate first (⊖) and rotate last (⌽)
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 2a7565f..ef1785b 100644
--- a/apl9.h
+++ b/apl9.h
@@ -349,6 +349,8 @@ Array *fnExcluding(Array *, Array *);
Array *fnCatenateLast(Array *, Array *);
Array *fnCatenateFirst(Array *, Array *);
Array *fnReshape(Array *, Array *);
+Array *fnRotateLast(Array *, Array *);
+Array *fnRotateFirst(Array *, Array *);
Array *fnSelfReference2(Array *, Array *);
/* Monadic operators from operators.c */