#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Tue, 02 Apr 2019 18:02:49 +0200
changeset 24039 c75d820500df
parent 24038 917ed6428d22
child 24040 cbf03fb244e9
#OTHER by cg class: OrderedDictionary removed: #isSequenceable because at: expects a dictionary key; not a numeric index.
OrderedDictionary.st
--- a/OrderedDictionary.st	Tue Apr 02 14:11:50 2019 +0200
+++ b/OrderedDictionary.st	Tue Apr 02 18:02:49 2019 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT.
  This is a Manchester Goodie protected by copyright.
@@ -1313,17 +1311,6 @@
      Re-redefined to true here, as I do have an order"
 
     ^ true
-!
-
-isSequenceable
-    "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'!