#FEATURE by cg
authorClaus Gittinger <cg@exept.de>
Wed, 24 Jul 2019 10:10:28 +0200
changeset 24468 3bf34e79ef6e
parent 24467 fa945869d1cc
child 24469 d08861278a7a
#FEATURE by cg class: Magnitude added: #threeWayCompareWith:
Magnitude.st
--- a/Magnitude.st	Wed Jul 24 09:44:40 2019 +0200
+++ b/Magnitude.st	Wed Jul 24 10:10:28 2019 +0200
@@ -66,6 +66,14 @@
     ^ (self min: aMin) max: aMax
 
     "Created: / 06-06-2007 / 11:00:22 / cg"
+!
+
+threeWayCompareWith:arg
+    "alias for compareWith:"
+
+    ^ self compareWith:arg
+
+    "Created: / 24-07-2019 / 10:10:08 / Claus Gittinger"
 ! !
 
 !Magnitude methodsFor:'comparing'!