Float.st
changeset 5884 92d1470a57dc
parent 5822 4e56f8aadda5
child 5954 d706efecb134
--- a/Float.st	Tue Jun 26 16:03:35 2001 +0200
+++ b/Float.st	Tue Jun 26 16:03:54 2001 +0200
@@ -1540,6 +1540,12 @@
 
     RETURN (__MKSMALLINT(sizeof(double)));
 %}.
+!
+
+defaultNumberOfDigits
+    "Answer how many digits of accuracy this class supports"
+
+    ^ 14
 ! !
 
 !Float methodsFor:'special access'!
@@ -2083,6 +2089,6 @@
 !Float class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Float.st,v 1.113 2001-02-28 16:07:47 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Float.st,v 1.114 2001-06-26 14:03:52 cg Exp $'
 ! !
 Float initialize!