Integer.st
changeset 23055 321a26366ce6
parent 23053 624d156e698c
child 23118 0c79d2fbcf16
--- a/Integer.st	Thu Jun 07 16:23:29 2018 +0200
+++ b/Integer.st	Thu Jun 07 16:28:47 2018 +0200
@@ -2776,7 +2776,7 @@
      doing this.
      If the largeFloat class is not present, a regular float is returned"
 
-    ^ (LargeFloat ? Float) fromInteger:self
+    ^ (LargeFloat ? LongFloat ? Float) fromInteger:self
 
     "
      1234567890 asLargeFloat
@@ -2785,7 +2785,7 @@
      12345678901234567890 asLargeFloat asInteger
     "
 
-    "Modified (comment): / 07-06-2018 / 16:22:59 / Claus Gittinger"
+    "Modified: / 07-06-2018 / 16:28:16 / Claus Gittinger"
 !
 
 asLongFloat