summaryrefslogtreecommitdiffstats
path: root/txr.1
diff options
context:
space:
mode:
Diffstat (limited to 'txr.1')
-rw-r--r--txr.139
1 files changed, 39 insertions, 0 deletions
diff --git a/txr.1 b/txr.1
index 61354add..ad0e3da7 100644
--- a/txr.1
+++ b/txr.1
@@ -15533,6 +15533,15 @@ is a list, then the
.meta sequence
form itself must be a place.
+This form is implemented using the
+.code ref
+accessor such that, except for the argument evaluation semantics of the DWIM
+brackets, it is equivalent to using the
+.mono
+.meti (ref < sequence << index )
+.onom
+syntax.
+
.meIP >> [ sequence << from-index..to-below-index ]
Retrieve the specified range of elements.
The range of elements is specified in the
@@ -15564,6 +15573,19 @@ regardless of whether the target is a string, vector or list.
If the target is a string, the replacement sequence must be
a string, or a list or vector of characters.
+The semantics is implemented using the
+.code sub
+accessor, such that the following equivalence holds:
+
+.verb
+ [seq from..to] <--> (sub seq from..to)
+.brev
+
+For this reason,
+.meta sequence
+may be any object that is iterable by
+.codn iter-begin .
+
.meIP >> [ sequence << index-list ]
Elements specified
by
@@ -31512,6 +31534,23 @@ is not an accessor, assigning to the
.code sub
syntax in this case will produce an error.
+The
+.meta sequence
+argument may also be any other object type that is suitable as input to the
+.code iter-begin
+function. In this situation, assigning to
+.code sub
+syntax produces an error. The behavior is complex. In cases where the
+.meta from
+and
+.meta to
+arguments imply that a suffix of
+.meta sequence
+is required, an iterator may be returned which traverses the suffix
+of the sequence. In other cases, a list of the elements selected by
+.code sub
+is returned.
+
If
.meta sequence
is a structure, it must support the