#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Wed, 22 Feb 2017 10:57:03 +0100
changeset 4342 f7a0d195e291
parent 4341 2b08cb3ff1a3
child 4343 6ed3f8281ea6
#DOCUMENTATION by cg class: ReindexedCollection comment/format in: #initialize:with: changed: #at:put:
ReindexedCollection.st
--- a/ReindexedCollection.st	Tue Feb 21 21:40:48 2017 +0100
+++ b/ReindexedCollection.st	Wed Feb 22 10:57:03 2017 +0100
@@ -198,7 +198,10 @@
      instance variable indicated by index.  
      Answer the value that was stored."
 
+    self shouldNotImplement. "/ I am readOnly
     ^ sequence at: (interval at: index) put: value
+
+    "Modified: / 22-02-2017 / 10:46:21 / cg"
 !
 
 size
@@ -316,8 +319,10 @@
 !
 
 initialize: aSequence with: anInterval 
-        sequence := aSequence.
-        interval := anInterval
+    sequence := aSequence.
+    interval := anInterval
+
+    "Modified (format): / 22-02-2017 / 10:46:38 / cg"
 ! !
 
 !ReindexedCollection methodsFor:'queries'!