eXept Software AG Logo

Smalltalk/X Webserver

Documentation of class 'LargeFloat':

Home

everywhere
www.exept.de
for:
[back]

Class: LargeFloat


Inheritance:

   Object
   |
   +--Magnitude
      |
      +--ArithmeticValue
         |
         +--Number
            |
            +--LimitedPrecisionReal
               |
               +--LargeFloat

Package:
stx:libbasic
Category:
Magnitude-Numbers
Version:
rev: ? date: ? ?
user: ?
file: ? directory: libbasic
module: stx stc-classLibrary: libbasic
Author:
Claus Gittinger

Description:


Experimental Code.
The implementation is neither complete nor tuned for performance - still being developed.

This class provides arbitrary precision floats. These are represented as:
  exponent,
  mantissa


Related information:

    Number
    Float
    LongFloat
    ShortFloat
    Fraction
    FixedPoint
    SmallInteger
    LargeInteger

Examples:


(1 to:1000) inject:1 asLargeFloat into:[:p :m | p * m] (1 to:1000) inject:1 into:[:p :m | p * m] Time millisecondsToRun:[ (1 to:20000) inject:1 asLargeFloat into:[:p :m | p * m] ] Time millisecondsToRun:[ (1 to:20000) inject:1 into:[:p :m | p * m] ]

ST/X 6.1.1; WebServer 1.620 at exept:8081; Wed, 23 May 2012 19:53:50 GMT