#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Fri, 22 Jun 2018 10:49:37 +0200
changeset 23127 399ea1a6c384
parent 23126 afbeb2bb7afc
child 23128 bbd3f21e2fef
#DOCUMENTATION by cg class: Number comment/format in: #printStringRadix:showRadix:
Number.st
--- a/Number.st	Thu Jun 21 20:37:03 2018 +0200
+++ b/Number.st	Fri Jun 22 10:49:37 2018 +0200
@@ -594,6 +594,7 @@
     "Modified (comment): / 08-06-2017 / 13:58:36 / mawalch"
 ! !
 
+
 !Number class methodsFor:'constants'!
 
 e
@@ -837,6 +838,7 @@
     "
 ! !
 
+
 !Number class methodsFor:'private'!
 
 readMantissaAndScaleFrom:aStream radix:radix
@@ -933,6 +935,7 @@
     ^ self == Number
 ! !
 
+
 !Number methodsFor:'Compatibility-Squeak'!
 
 asSmallAngleDegrees
@@ -1091,6 +1094,7 @@
     "Modified: / 25-07-2017 / 15:58:46 / cg"
 ! !
 
+
 !Number methodsFor:'coercing & converting'!
 
 i
@@ -2025,10 +2029,10 @@
 !
 
 printStringRadix:base showRadix:showRadixBoolean
-    "return a string representation of the receiver in the specified
-     base; does NOT prepend XXr to the string.
+    "return a string representation of the receiver in the specified base; 
+     optionally prepend XXr to the string.
      See also: radixPrintStringRadix:
-	       printOn:base:showRadix:"
+               printOn:base:showRadix:"
 
     |s|
 
@@ -2041,8 +2045,8 @@
      10000000000000000000000000000000000000000000 printStringRadix:16 showRadix:true
     "
 
-
     "Created: / 23-09-2011 / 13:59:19 / cg"
+    "Modified (comment): / 22-06-2018 / 09:56:17 / Claus Gittinger"
 !
 
 printStringWithThousandsSeparator
@@ -3458,6 +3462,7 @@
     "Modified: / 5.11.2001 / 17:54:22 / cg"
 ! !
 
+
 !Number class methodsFor:'documentation'!
 
 version