From 02aa544f14d0b544663face5107ceba197ba5aed Mon Sep 17 00:00:00 2001 From: Peter Mikkelsen Date: Fri, 21 Jan 2022 21:52:50 +0000 Subject: =?UTF-8?q?Implement=20monadic=20f=E2=8C=BF=20and=20f/.=20Identity?= =?UTF-8?q?=20elements=20and=20windowed=20reduce=20is=20not=20implemented?= =?UTF-8?q?=20yet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apl9.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'apl9.h') diff --git a/apl9.h b/apl9.h index 11643d5..6e6574e 100644 --- a/apl9.h +++ b/apl9.h @@ -270,6 +270,12 @@ Array *opSwitch(Datum *, Array *, Array *); /* Dyadic operators from operators.c */ Array *opOver(Datum *, Datum *, Array *, Array *); +/* Dyadic functions from hybrids.c */ + +/* Monadic operators from hybrids.c */ +Array *opReduceLast(Datum *, Array *, Array *); +Array *opReduceFirst(Datum *, Array *, Array *); + /* Global variables */ extern int traceeval; /* eval.c */ extern int debugmem; /* memory.c */ -- cgit v1.2.3