summaryrefslogtreecommitdiffstats
path: root/txr.1
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-09-19 11:23:31 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-09-19 11:23:31 -0700
commit4c066cf5782381ca49de86af2ea07e2a259a8b64 (patch)
treea84311f76d803841f44b99714401c419e50906da /txr.1
parent4be9838bd95543911ab72cb68baf8fc85d63b586 (diff)
downloadtxr-4c066cf5782381ca49de86af2ea07e2a259a8b64.tar.gz
txr-4c066cf5782381ca49de86af2ea07e2a259a8b64.tar.bz2
txr-4c066cf5782381ca49de86af2ea07e2a259a8b64.zip
Adding flatcar* function.
* eval.c (eval_init): Registered flatcar* intrinsic. * lib.c (lazy_flatcar_scan, lazy_flatcar_func): New static functions. (lazy_flatcar): New function. * lib.h (lazy_flatcar): Declared. * txr.1: Documented, also touching flatten documentation.
Diffstat (limited to 'txr.1')
-rw-r--r--txr.122
1 files changed, 13 insertions, 9 deletions
diff --git a/txr.1 b/txr.1
index 1083ec39..937432a3 100644
--- a/txr.1
+++ b/txr.1
@@ -14735,19 +14735,14 @@ function produces a list whose elements are all of the
.cod2 non- nil
atoms contained in the structure of
.metn list .
+
The
.code flatten*
function
works like
.code flatten
-except that
-.code flatten
-creates and returns a complete
-flattened list, whereas
-.code flatten*
-produces a lazy list which is
-instantiated on demand. This is particularly useful when the input
-structure is itself lazy.
+except that it produces a lazy list. It can be used to lazily flatten an
+infinite lazy structure.
.TP* Examples:
.cblk
@@ -14762,9 +14757,10 @@ structure is itself lazy.
(flatten '(((()) ()))) -> nil
.cble
-.coNP Function @ flatcar
+.coNP Functions @ flatcar and @ flatcar*
.synb
.mets (flatcar << tree )
+.mets (flatcar* << tree )
.syne
.desc
The
@@ -14787,6 +14783,14 @@ atoms which appear in
.code cdr
fields.
+The
+.code flatcar*
+function
+works like
+.code flatcar
+except that it produces a lazy list. It can be used to lazily flatten an
+infinite lazy structure.
+
.TP* Examples:
.cblk
(flatcar '(1 2 () (3 4))) -> (1 2 nil 3 4)