diff options
-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: |