From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID, LOTS_OF_MONEY autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b9b7539b5df3ca8e X-Google-Attributes: gid103376,public From: tmoran@bix.com (Tom Moran) Subject: Re: delta? Date: 1999/02/28 Message-ID: <36d9a7d5.1437012@news.pacbell.net>#1/1 X-Deja-AN: 449629322 References: <7b9bl7$ki5$1@eng-ser1.erg.cuhk.edu.hk> X-Complaints-To: abuse@pacbell.net X-Trace: typhoon-sf.pbi.net 920234265 206.170.2.109 (Sun, 28 Feb 1999 12:37:45 PDT) Organization: SBC Internet Services NNTP-Posting-Date: Sun, 28 Feb 1999 12:37:45 PDT Newsgroups: comp.lang.ada Date: 1999-02-28T00:00:00+00:00 List-Id: >what is the meaning of delta and digits in the following sentence? >type Money is delta 0.01 digits 15; It means variables of type Money are exactly represented down to 0.01, differences between such variables can be as small as 0.01, and the variables can take a value as big as 15 decimal digits. Given Dollars : Money; Then Dollars can be as big as $9,999,999,999,999.99 and accurately represent an amount down to the penny.