#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Tue, 28 May 2019 05:56:40 +0200
changeset 24200 1cdc3384a057
parent 24199 f3b123868e90
child 24201 511a59fbb595
#DOCUMENTATION by cg class: Infinity::NegativeInfinity comment/format in: #positive class: Infinity::PositiveInfinity comment/format in: #positive
Infinity.st
--- a/Infinity.st	Tue May 28 05:53:25 2019 +0200
+++ b/Infinity.st	Tue May 28 05:56:40 2019 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  This is a Manchester Goodie.  It is distributed freely on condition
  that you observe these conditions in respect of the whole Goodie, and on
@@ -395,9 +397,12 @@
 !
 
 positive
+    "return true, if the receiver is greater or equal to zero (not negative)"
+
     ^ false
 
     "Created: / 21-06-2017 / 14:02:18 / cg"
+    "Modified (comment): / 28-05-2019 / 05:55:45 / Claus Gittinger"
 ! !
 
 !Infinity::NegativeInfinity methodsFor:'comparing'!
@@ -433,9 +438,12 @@
 !
 
 positive
+    "return true, if the receiver is greater or equal to zero (not negative)"
+
     ^ true
 
     "Created: / 21-06-2017 / 14:02:28 / cg"
+    "Modified (comment): / 28-05-2019 / 05:55:48 / Claus Gittinger"
 ! !
 
 !Infinity::PositiveInfinity methodsFor:'comparing'!