# HG changeset patch # User Claus Gittinger # Date 1457622052 -3600 # Node ID eee0a5c4dcea77324e9dd777f72422a575d505e5 # Parent 18904be01e6353edf37f1e815bcb7091bfb02941 #OTHER class: SmallInteger comment/format in: #documentation diff -r 18904be01e63 -r eee0a5c4dcea SmallInteger.st --- a/SmallInteger.st Thu Mar 10 15:59:13 2016 +0100 +++ b/SmallInteger.st Thu Mar 10 16:00:52 2016 +0100 @@ -45,8 +45,9 @@ documentation " SmallIntegers are Integers in the range of at least +/- 2^30 - (i.e. 31 bits, which is not a guaranteed: on an alpha, 63 bits are used, - if the system was configured for 64bit mode). + i.e. 31 bits, but this is not a guaranteed: + on an alpha or x86_64, 63 bits are used, if the system was configured for 64bit mode. + under the Schteam-VM, 64 bits are used (i.e. a full long integer) These are no real objects - they have no instances (not even storage !!) and cannot be subclassed. @@ -61,12 +62,12 @@ with an instance variable holding the value. [author:] - Claus Gittinger + Claus Gittinger [see also:] - Number - Float Fraction FixedPoint - LargeInteger + Number + Float Fraction FixedPoint + LargeInteger " ! !