PowerAda 60

From OC Systems Wiki!
Jump to: navigation, search

(60) The names and characteristics of the numeric subtypes declared in the visible part of package Standard.

See A.1(3).

From package Standard:

type SHORT_SHORT_INTEGER
        is range -128 .. 127;
type SHORT_INTEGER
        is range -32768 .. 32767;
type INTEGER is
        range -2147483648 .. 2147483647;
type LONG_INTEGER is
        range -2147483648 .. 2147483647;
type FLOAT is
        digits 6 range -3.40282E+38 .. 3.40282E+38;
type LONG_FLOAT is
        digits 15 range
        -1.79769313486232E+308 .. 1.79769313486232E+308;
type DURATION is
        delta 2**(-14) range -86400.0 .. 86400.0;