# HG changeset patch # User Claus Gittinger # Date 1575173955 -3600 # Node ID ca3b06227ff4b5e65246308c2d9f07795c2c20c4 # Parent b6ca5e1a1592ecc4e88bc13118b288e8e9def45b #DOCUMENTATION by exept class: LargeFloat class comment/format in: #coerce: #eBias diff -r b6ca5e1a1592 -r ca3b06227ff4 LargeFloat.st --- a/LargeFloat.st Sun Dec 01 05:18:56 2019 +0100 +++ b/LargeFloat.st Sun Dec 01 05:19:15 2019 +0100 @@ -1,5 +1,3 @@ -"{ Encoding: utf8 }" - " COPYRIGHT (c) 2003 by eXept Software AG All Rights Reserved @@ -339,7 +337,7 @@ !LargeFloat class methodsFor:'coercing & converting'! coerce:aNumber - "return the argument as a LargeFloat" + "convert the argument aNumber into an instance of the receiver (class) and return it." ^ aNumber asLargeFloat ! ! @@ -444,6 +442,9 @@ ! eBias + "Answer the exponent's bias; + that is the offset of the zero exponent when stored" + ^ 0 !