From c5d0ef8e53608da468f89837a12ab10ecc401978 Mon Sep 17 00:00:00 2001 From: Peter Mikkelsen Date: Fri, 28 Jan 2022 21:49:14 +0000 Subject: =?UTF-8?q?Implement=20rotate=20first=20(=E2=8A=96)=20and=20rotate?= =?UTF-8?q?=20last=20(=E2=8C=BD)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apl9.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'apl9.h') 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 */ -- cgit v1.2.3