[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
type LongestCard = Cardinal (BitSizeOf (LongestInt)); |
`LongestCard' is GPC's longest-possible unsigned integer type. Currently, this is the same as section 9.138 LongCard. On most platforms it is 64 bits wide and thus has a range of `0..18446744073709551615'.
There are lots of other integer types in GPC, see section 8.2.3 Integer Types.
`LongestCard' is a GNU Pascal extension.
program LongestCardDemo; var a: LongestCard; begin a := 42; WriteLn (a) end. |
section 8.2.3 Integer Types, section 8.2.10.1 Subrange Types.