aboutsummaryrefslogtreecommitdiffstats
path: root/cppawk-cons.1
diff options
context:
space:
mode:
Diffstat (limited to 'cppawk-cons.1')
-rw-r--r--cppawk-cons.14
1 files changed, 4 insertions, 0 deletions
diff --git a/cppawk-cons.1 b/cppawk-cons.1
index d7002e7..a39b563 100644
--- a/cppawk-cons.1
+++ b/cppawk-cons.1
@@ -84,6 +84,10 @@ cons \- Lisp-like data representation and control flow macros
nthcdr(i, x) // suffix of x starting at i-th item
+ ldiff(x, y) // prefix of x omitting suffix y.
+ last(x, [n]) // suffix of x of length n, defaulting to 1.
+ butlast(x, [n]) // prefix of x omitting last n, defaulting to 1.
+
reverse(x) // reverse list x
iota(x, y[, d]) // numbers from x to y, incrementing by