diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-10-04 06:51:26 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-10-04 06:51:26 -0700 |
commit | 1bb47fe9f0af78c66a8a05082f55cfeb0d4fac85 (patch) | |
tree | ef0e16875567afdcd19db37893e0cf09ba144200 | |
parent | 79932c1296cbd376137bccc825fb70ae55dc532b (diff) | |
download | txr-1bb47fe9f0af78c66a8a05082f55cfeb0d4fac85.tar.gz txr-1bb47fe9f0af78c66a8a05082f55cfeb0d4fac85.tar.bz2 txr-1bb47fe9f0af78c66a8a05082f55cfeb0d4fac85.zip |
doc: ranges are immutable.
* txr.1: document that ranges are immutable
and expand the surrounding wording a bit.
-rw-r--r-- | txr.1 | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -18202,10 +18202,13 @@ excess value which surpasses the endpoint is excluded from the sequence. Ranges are a objects which each aggregate two values, not unlike .code cons cells. However, they are atoms, and are primarily intended to hold numeric or -character values. The two values of a range are called +character values in their two fields. These fields are called .code from and -.codn to . +.code to +which are the names of the functions which access them. These fields +are not mutable; a new value cannot be stored into either field of +a range. The printed notation for a range object consists of the prefix .code #R |