Table of Contents
Previous Chapter
- indexing
- description: "Platform--dependent properties. This class may be used as ancestor by classes needing its facilities"
- class interface
- feature -- Access
- -- Number of bits in a value of type BOOLEAN
- meaningful: Result >= 1
- -- Number of bits in a value of type CHARACTER
- meaningful: Result >= 1
- large_enough: 2 ^ Result >= Maximum_character_code
- -- Number of bits in a value of type DOUBLE
- meaningful: Result >= 1;
- meaningful: Result >= Real_bits
- -- Number of bits in a value of type INTEGER
- meaningful: Result >= 1;
- large_enough: 2 ^ Result >= Maximum_integer;
- large_enough_for_negative: 2 ^ Result >= -- Minimum_integer
- -- Largest supported code for CHARACTER values
- meaningful: Result >= 127
- -- Largest supported value of type INTEGER.
- meaningful: Result >= 0
- Minimum_character_code: INTEGER
- -- Smallest supported code for CHARACTER values
- meaningful: Result <= 0
- -- Smallest supported value of type INTEGER
- meaningful: Result <= 0
- -- Number of bits in a value of type POINTER
- meaningful: Result >= 1
- -- Number of bits in a value of type REAL
- meaningful: Result >= 1
end
-
Table of Contents
Next Chapter
|