[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

9.258 SizeType

Synopsis

 
type
  SizeType  { built-in type }

Description

`SizeType' is an integer type (usually unsigned) to represent the size of objects in memory.

Conforming to

Example

 
program SizeTypeDemo;
var
  a: array [1 .. 10] of Integer;
  Size: SizeType;
begin
  Size := SizeOf (a);
  WriteLn (Size)
end.

See also



This document was generated by Frank Heckenbach on May, 10 2002 using texi2html