#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Sun, 03 Mar 2019 00:09:42 +0100
changeset 23801 7eabaea318f4
parent 23800 0f0470940b33
child 23802 b82ae2dcb9b9
#DOCUMENTATION by cg class: SequenceableCollection comment/format in: #isSequenceable
SequenceableCollection.st
--- a/SequenceableCollection.st	Sat Mar 02 23:17:53 2019 +0100
+++ b/SequenceableCollection.st	Sun Mar 03 00:09:42 2019 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
@@ -7691,9 +7693,13 @@
 !
 
 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
+
+    "Modified (comment): / 03-03-2019 / 00:09:21 / Claus Gittinger"
 !
 
 isSorted