#UI_ENHANCEMENT by cg
authorClaus Gittinger <cg@exept.de>
Fri, 14 Oct 2016 00:15:23 +0200
changeset 4144 9093e8aaf912
parent 4143 320bddcd2606
child 4145 dac736be1523
#UI_ENHANCEMENT by cg class: LazyArray comment/format in: #documentation #examples
LazyArray.st
--- a/LazyArray.st	Fri Oct 14 00:10:27 2016 +0200
+++ b/LazyArray.st	Fri Oct 14 00:15:23 2016 +0200
@@ -20,7 +20,9 @@
 
 documentation
 "
-    An Array which computes its value lazily (on demand) and remembers those values.
+    An Array which computes its values lazily (on demand) and remembers them.
+    Useful if it is relatively expensive to compute an element, 
+    and it may be needed again later.
 
     [author:]
         Claus Gittinger (cg@alan)