OrderedDictionary.st
changeset 23802 b82ae2dcb9b9
parent 23735 77363fc65861
child 23843 770c583538ec
--- 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'!