diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-04-16 10:14:53 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-04-16 10:14:53 -0700 |
commit | 5051151992960f10d46a26f7306c342ad3b55117 (patch) | |
tree | 978106ebda4c61dbf715b69a162986a32fdf6b44 | |
parent | 5413d5e7eaa6ef55608f0a3309f83b368c8d88b9 (diff) | |
download | cppawk-5051151992960f10d46a26f7306c342ad3b55117.tar.gz cppawk-5051151992960f10d46a26f7306c342ad3b55117.tar.bz2 cppawk-5051151992960f10d46a26f7306c342ad3b55117.zip |
cons man page: add FUNCTION APPLICATION section.
-rw-r--r-- | cppawk-cons.1 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cppawk-cons.1 b/cppawk-cons.1 index 938774e..d400d89 100644 --- a/cppawk-cons.1 +++ b/cppawk-cons.1 @@ -95,6 +95,8 @@ cons \- Lisp-like data representation and control flow macros uniq(\fIx\fP) \fI// deduplicate x\fP uniqual(\fIx\fP) \fI// deduplicate x with equal equality\fP + \fI// Function application\fP + mapcar(\fIf\fP, \fIx\fP) \fI// map list through function f\fP mappend(\fIf\fP, \fIx\fP) \fI// map list through f, append results\fP @@ -1814,6 +1816,8 @@ function's notion of equality. uniqual(list(box_str("abc"), "abc")) -> ("abc") .ft R +.SH FUNCTION APPLICATION + .SS Functions \fImapcar\fP and \fImappend\fP .bk Syntax: |