summaryrefslogtreecommitdiff
path: root/apl9.h
diff options
context:
space:
mode:
authorPeter Mikkelsen <petermikkelsen10@gmail.com>2022-01-14 13:09:26 +0000
committerPeter Mikkelsen <petermikkelsen10@gmail.com>2022-01-14 13:09:26 +0000
commit3330e6ed47c71b87bb79c5e277214a36d3f2ad3b (patch)
tree2e019b93bae58aef42d543332cce10dc706f43e7 /apl9.h
parent396543790dc1c844c726b77a95c6180978232abd (diff)
Add code to simplify arrays of nested scalars, sometimes created by functions or operators
Diffstat (limited to 'apl9.h')
-rw-r--r--apl9.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/apl9.h b/apl9.h
index a2d0e3d..3317e3b 100644
--- a/apl9.h
+++ b/apl9.h
@@ -144,6 +144,7 @@ int simplescalar(Array *);
Array *extend(Array *, Array *);
int scalarextend(Array *, Array *, Array **, Array **);
Array *arrayitem(Array *, int);
+Array *simplifyarray(Array *);
/* eval.c */
Datum *eval(Statement *);