commentary
authorClaus Gittinger <cg@exept.de>
Thu, 18 Jul 1996 12:32:21 +0200
changeset 1556 134d96466f5a
parent 1555 316491c1b216
child 1557 2c3c301cf48f
commentary
Float.st
Fraction.st
Integer.st
LargeInt.st
LargeInteger.st
SFloat.st
ShortFloat.st
SmallInt.st
SmallInteger.st
--- a/Float.st	Thu Jul 18 12:27:25 1996 +0200
+++ b/Float.st	Thu Jul 18 12:32:21 1996 +0200
@@ -31,7 +31,7 @@
 %}
 ! !
 
-!Float class methodsFor:'documentation'!
+!Float  class methodsFor:'documentation'!
 
 copyright
 "
@@ -75,8 +75,8 @@
 
 
     [see also:]
-        ShortFloat
         Number
+        ShortFloat Fraction Integer
         FloatArray DoubleArray
 
     [author:]
@@ -84,7 +84,7 @@
 "
 ! !
 
-!Float class methodsFor:'instance creation'!
+!Float  class methodsFor:'instance creation'!
 
 basicNew
     "return a new float - here we return 0.0
@@ -104,7 +104,7 @@
 
 ! !
 
-!Float class methodsFor:'binary storage'!
+!Float  class methodsFor:'binary storage'!
 
 binaryDefinitionFrom:aStream manager: manager
     |f|
@@ -226,7 +226,7 @@
     ]
 ! !
 
-!Float class methodsFor:'constants'!
+!Float  class methodsFor:'constants'!
 
 pi
     "return the constant pi as Float"
@@ -252,7 +252,7 @@
     "Modified: 23.4.1996 / 09:27:15 / cg"
 ! !
 
-!Float class methodsFor:'queries'!
+!Float  class methodsFor:'queries'!
 
 isBuiltInClass
     "return true if this class is known by the run-time-system.
@@ -1087,8 +1087,8 @@
     ^ val asInteger
 ! !
 
-!Float class methodsFor:'documentation'!
+!Float  class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Float.st,v 1.39 1996-04-25 16:59:26 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Float.st,v 1.40 1996-07-18 10:31:03 cg Exp $'
 ! !
--- a/Fraction.st	Thu Jul 18 12:27:25 1996 +0200
+++ b/Fraction.st	Thu Jul 18 12:32:21 1996 +0200
@@ -42,6 +42,10 @@
 
     [author:]
         Claus Gittinger
+
+    [see also:]
+        Number
+        Float Integer
 "
 ! !
 
@@ -489,6 +493,6 @@
 !Fraction  class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Fraction.st,v 1.31 1996-07-18 10:27:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Fraction.st,v 1.32 1996-07-18 10:30:50 cg Exp $'
 ! !
 Fraction initialize!
--- a/Integer.st	Thu Jul 18 12:27:25 1996 +0200
+++ b/Integer.st	Thu Jul 18 12:32:21 1996 +0200
@@ -50,6 +50,11 @@
 
     [author:]
         Claus Gittinger
+
+    [see also:]
+        Number
+        LargeInteger SmallInteger
+        Float ShortFloat Fraction 
 "
 ! !
 
@@ -1031,5 +1036,5 @@
 !Integer  class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Integer.st,v 1.43 1996-07-18 10:27:25 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Integer.st,v 1.44 1996-07-18 10:31:26 cg Exp $'
 ! !
--- a/LargeInt.st	Thu Jul 18 12:27:25 1996 +0200
+++ b/LargeInt.st	Thu Jul 18 12:32:21 1996 +0200
@@ -61,6 +61,11 @@
 
     [author:]
         Claus Gittinger
+
+    [see also:]
+        Number
+        Float Fraction 
+        SmallInteger
 "
 ! !
 
@@ -1638,5 +1643,5 @@
 !LargeInteger  class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/LargeInt.st,v 1.29 1996-07-01 19:10:42 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/LargeInt.st,v 1.30 1996-07-18 10:31:46 cg Exp $'
 ! !
--- a/LargeInteger.st	Thu Jul 18 12:27:25 1996 +0200
+++ b/LargeInteger.st	Thu Jul 18 12:32:21 1996 +0200
@@ -61,6 +61,11 @@
 
     [author:]
         Claus Gittinger
+
+    [see also:]
+        Number
+        Float Fraction 
+        SmallInteger
 "
 ! !
 
@@ -1638,5 +1643,5 @@
 !LargeInteger  class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/LargeInteger.st,v 1.29 1996-07-01 19:10:42 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/LargeInteger.st,v 1.30 1996-07-18 10:31:46 cg Exp $'
 ! !
--- a/SFloat.st	Thu Jul 18 12:27:25 1996 +0200
+++ b/SFloat.st	Thu Jul 18 12:32:21 1996 +0200
@@ -19,7 +19,7 @@
 	category:'Magnitude-Numbers'
 !
 
-!ShortFloat class methodsFor:'documentation'!
+!ShortFloat  class methodsFor:'documentation'!
 
 copyright
 "
@@ -63,11 +63,15 @@
 
     [author:]
         Claus Gittinger
+
+    [see also:]
+        Number
+        Float Fraction Integer
 "
 
 ! !
 
-!ShortFloat class methodsFor:'instance creation'!
+!ShortFloat  class methodsFor:'instance creation'!
 
 basicNew
     "return a new shortFloat - here we return 0.0
@@ -86,7 +90,7 @@
 %}
 ! !
 
-!ShortFloat class methodsFor:'constants'!
+!ShortFloat  class methodsFor:'constants'!
 
 pi
     "return the constant pi as ShortFloat"
@@ -112,7 +116,7 @@
     "Modified: 23.4.1996 / 09:26:45 / cg"
 ! !
 
-!ShortFloat class methodsFor:'queries'!
+!ShortFloat  class methodsFor:'queries'!
 
 isBuiltInClass
     "return true if this class is known by the run-time-system.
@@ -544,8 +548,8 @@
 
 ! !
 
-!ShortFloat class methodsFor:'documentation'!
+!ShortFloat  class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/SFloat.st,v 1.6 1996-04-25 17:00:09 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/SFloat.st,v 1.7 1996-07-18 10:32:02 cg Exp $'
 ! !
--- a/ShortFloat.st	Thu Jul 18 12:27:25 1996 +0200
+++ b/ShortFloat.st	Thu Jul 18 12:32:21 1996 +0200
@@ -19,7 +19,7 @@
 	category:'Magnitude-Numbers'
 !
 
-!ShortFloat class methodsFor:'documentation'!
+!ShortFloat  class methodsFor:'documentation'!
 
 copyright
 "
@@ -63,11 +63,15 @@
 
     [author:]
         Claus Gittinger
+
+    [see also:]
+        Number
+        Float Fraction Integer
 "
 
 ! !
 
-!ShortFloat class methodsFor:'instance creation'!
+!ShortFloat  class methodsFor:'instance creation'!
 
 basicNew
     "return a new shortFloat - here we return 0.0
@@ -86,7 +90,7 @@
 %}
 ! !
 
-!ShortFloat class methodsFor:'constants'!
+!ShortFloat  class methodsFor:'constants'!
 
 pi
     "return the constant pi as ShortFloat"
@@ -112,7 +116,7 @@
     "Modified: 23.4.1996 / 09:26:45 / cg"
 ! !
 
-!ShortFloat class methodsFor:'queries'!
+!ShortFloat  class methodsFor:'queries'!
 
 isBuiltInClass
     "return true if this class is known by the run-time-system.
@@ -544,8 +548,8 @@
 
 ! !
 
-!ShortFloat class methodsFor:'documentation'!
+!ShortFloat  class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ShortFloat.st,v 1.6 1996-04-25 17:00:09 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ShortFloat.st,v 1.7 1996-07-18 10:32:02 cg Exp $'
 ! !
--- a/SmallInt.st	Thu Jul 18 12:27:25 1996 +0200
+++ b/SmallInt.st	Thu Jul 18 12:32:21 1996 +0200
@@ -52,6 +52,11 @@
 
     [author:]
         Claus Gittinger
+
+    [see also:]
+        Number
+        Float Fraction 
+        LargeInteger
 "
 ! !
 
@@ -2090,5 +2095,5 @@
 !SmallInteger  class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/SmallInt.st,v 1.53 1996-07-01 19:18:28 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/SmallInt.st,v 1.54 1996-07-18 10:32:21 cg Exp $'
 ! !
--- a/SmallInteger.st	Thu Jul 18 12:27:25 1996 +0200
+++ b/SmallInteger.st	Thu Jul 18 12:32:21 1996 +0200
@@ -52,6 +52,11 @@
 
     [author:]
         Claus Gittinger
+
+    [see also:]
+        Number
+        Float Fraction 
+        LargeInteger
 "
 ! !
 
@@ -2090,5 +2095,5 @@
 !SmallInteger  class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SmallInteger.st,v 1.53 1996-07-01 19:18:28 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SmallInteger.st,v 1.54 1996-07-18 10:32:21 cg Exp $'
 ! !