added #defaultNumberOfDigits
authorClaus Gittinger <cg@exept.de>
Tue, 26 Jun 2001 16:05:34 +0200
changeset 5885 91ff479e693b
parent 5884 92d1470a57dc
child 5886 78c6f9c5fe8e
added #defaultNumberOfDigits
LongFloat.st
--- a/LongFloat.st	Tue Jun 26 16:03:54 2001 +0200
+++ b/LongFloat.st	Tue Jun 26 16:05:34 2001 +0200
@@ -717,6 +717,14 @@
     ^ ObjectMemory allocationFailureSignal raise.
 ! !
 
+!LongFloat methodsFor:'queries'!
+
+defaultNumberOfDigits
+    "Answer how many digits of accuracy this class supports"
+
+    ^ 17
+! !
+
 !LongFloat methodsFor:'special access'!
 
 exponent
@@ -1006,5 +1014,5 @@
 !LongFloat class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/LongFloat.st,v 1.15 2001-02-28 16:07:47 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/LongFloat.st,v 1.16 2001-06-26 14:05:34 cg Exp $'
 ! !