#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Sun, 03 Mar 2019 00:10:14 +0100
changeset 23802 b82ae2dcb9b9
parent 23801 7eabaea318f4
child 23803 b64bd0c74a03
#DOCUMENTATION by cg class: OrderedDictionary comment/format in: #isSequenceable
OrderedDictionary.st
--- a/OrderedDictionary.st	Sun Mar 03 00:09:42 2019 +0100
+++ b/OrderedDictionary.st	Sun Mar 03 00:10:14 2019 +0100
@@ -1349,11 +1349,14 @@
 !
 
 isSequenceable
-    "return true, if the receiver is some kind of sequenceableCollection"
+    "return true, if the receiver is sequenceable,
+     i.e. if its elements are accessable by an integer index,
+     and support the do:-protocol."
 
     ^ true
 
     "Created: / 21-08-2018 / 12:41:09 / Maren"
+    "Modified (comment): / 03-03-2019 / 00:09:16 / Claus Gittinger"
 ! !
 
 !OrderedDictionary class methodsFor:'documentation'!